典型DFS搜索。
#include
#include
#include
#include
#include
using namespace std;
int w,h,maxn;
bool ok ;
int board[25][25];
int dx[] = {1,0,-1,0} ;
int dy[] = {0,1,0,-1} ;
struct pa{
int x,y;
pa(i...
分类:
Web程序 时间:
2015-04-11 17:57:27
阅读次数:
151
/*
*
* 淘宝天猫批量打旗帜工具 Beta 1.0.0.0
* Release date:
* Author
: 半条虫(466814195)
* Keywords
: Etsoftware 半条虫(466814195) rimke 39doo 39度
* Description
: 本脚本功能由EtSoftWare团队研发,仅供学习不得用于商业用途。
* Blog...
分类:
其他好文 时间:
2015-04-11 17:59:14
阅读次数:
342
最简单的动归,当然,我也只会最简单的,不开心心塞中
#include
#include
using namespace std;
int dp[100+5][100+5];
int main()
{
int n,p,m,t;
while(cin>>n>>p>>m>>t)
{
memset(dp,0,sizeof(dp));
dp[0][p]=1;
for(int i=1;i<=...
分类:
其他好文 时间:
2015-04-11 17:59:41
阅读次数:
109
DFS水题。
#include
#include
#include
#include
#include
using namespace std;
int dx[] = {0,1,0,-1} ;
int dy[] = {1,0,-1,0} ;
int n,m,maxn;
int vis[25][25];
char s[25][25];
struct pa{
int r,c;
};
voi...
分类:
其他好文 时间:
2015-04-11 17:56:41
阅读次数:
118
在配置thinkphp的URL重写时,千万不要配置MultiViews!
不要问我为什么!!
被它害苦了!!!!...
分类:
Web程序 时间:
2015-04-11 17:58:25
阅读次数:
168
alter table语句
用于在已有的表中添加、修改或删除列
原始表:
一、alter在表中添加新的列
语法:alter table table_name add column_name datatype
注意:sqlite3中alter不支持删除列的操作
注意:sqlite3中alter 不能更改一个已经存在的字段的名称、数据类型...
分类:
数据库 时间:
2015-04-11 17:57:52
阅读次数:
231
利用boost.deadline_timer() 可以很方便的实现定时器功能,详情参考:http://www.boost.org/doc/libs/1_57_0/doc/html/boost_asio/reference/deadline_timer.html...
分类:
其他好文 时间:
2015-04-11 17:56:20
阅读次数:
574
基于颜色特征的物体识别系统对于不同颜色的分别提取和识别
(以上两幅图片由某大学机器人实验室负责人暨机器人天空主编Liu Weichao友情提供)
随着计算机科学和自动控制技术的发展,越来越多的不同种类的智能机器人出现在生产生活中,视觉系统作为智能机器人系统中一个重要的子系统,也越来越受到人们的重视。
视觉系统是一个非常复杂的系统,它既要做到图像的准确采集还要做到对外界变化反应的实...
分类:
其他好文 时间:
2015-04-11 17:58:21
阅读次数:
142
drawImage(image, x, y)
drawImage(image, x, y, width, height)
drawImage(image, sourceX, sourceY, sourceWidth, sourceHeight,
destX, destY, destWidth, destHeight)drawImage() 方法有 3 个变形。第一个变形把整个图像...
分类:
其他好文 时间:
2015-04-11 17:57:38
阅读次数:
195
1.建立maven webapp工程aty-rest。
2. 在pom文件增加spring框架、jax-rs接口、CXF实现
javax.ws.rs
javax.ws.rs-api
2.0
org.springframework
spring-web
3.1.1.RELEASE
org.apache.cxf
cxf-rt-frontend-jaxrs
3.0...
分类:
其他好文 时间:
2015-04-11 17:57:16
阅读次数:
146
1、实例源码
CSS3的[att=val]选择器
[id=div_border]{
background-color:#C00;
width:110px;
font-family:微软雅黑;
font-size:18px;
font-size-adjust:!important;
font-stretch:expanded;...
分类:
Web程序 时间:
2015-04-11 17:58:17
阅读次数:
363
——- android培训、java培训、期待与您交流! ———-对字符串中字符进行自然顺序排序。
例如,”vcz1bdAa+cs”–>abccdsvz
思路:
1 把字符串变成字符数组
2 对数组进行排序
3 找到字符数组中’a’第一次出现的位置找到
4 计算要转换的字符个数
5 把字符数组变成字符串import java.util.Arrays;
class StringSortD...
分类:
编程语言 时间:
2015-04-11 17:57:55
阅读次数:
138
// Created By 郭仔
NSObject常用方法:
=======================================================================
OC反射机制:...
分类:
其他好文 时间:
2015-04-11 17:56:55
阅读次数:
124
(一) 使用方式
(a) 系统级配置
语言、字符编码、session、cookie等配置项
文件位置: application/config/config.php加载方式: 自动加载调用方式: $this->config->item(‘config_item_key');
(b) 业务级别配置
实际业务中用到的配置项,或者叫做常量,比如1男...
分类:
其他好文 时间:
2015-04-11 17:56:34
阅读次数:
192
题意:
总共最多有15种疾病
有n头牛,每头牛有di种疾病,分别用1-15之间的数字来表示
要求选择最多头牛 使他们的疾病种数不超过K
思路:
枚举状态,状态是当前有哪几种病,然后判断每头牛是否能选择即可
code:
#include
#include
#include
using namespace std;
const int maxn = 40000;
int cow[10...
分类:
其他好文 时间:
2015-04-11 17:54:38
阅读次数:
104
花一天时间整理【国民经济行业分类(GB/T 4754-2011)】,将其整理成树形结构数据
一、Excel中整理数据
二、数据库中数据
三、最终界面参数字典展示
相关Excel、数据下载...
分类:
数据库 时间:
2015-04-11 17:57:13
阅读次数:
686
1、实例源码
CSS3的[att*=val]选择器
[id*=div_border]{
background-color:#9F6;
width:110px;
font-family:微软雅黑;
font-size:18px;
font-size-adjust:!important;
font-stretch:expanded;...
分类:
Web程序 时间:
2015-04-11 17:55:23
阅读次数:
389