本毕业设计对博客系统的操持与开拓过程进行了阐发与描写。按照系统开拓的理论操纵步伐,文章从系统概述、系统阐发、系统分析和系统实现这四大章节对系统开拓过程进行别离叙说。系统概述中主要进行了课题背景、课题含意和近况阐发;系统阐发中主要搜罗了系统操持前的需要阐发、业务流程阐发、数据流程阐发和数据字典阐发;而...
分类:
其他好文 时间:
2014-07-31 23:17:40
阅读次数:
324
题目地址:HDU 3729
二分图最大匹配+按字典序输出结果。只要从数字大的开始匹配就可以保证字典序最大了。群里有人问。。就顺手写了这题。。
代码如下:
#include
#include
#include
#include
using namespace std;
int vis[110000], head[110000], cnt, link[110000], n, a[70...
分类:
其他好文 时间:
2014-07-31 20:54:27
阅读次数:
250
解题报告
字典树爆。
#include
#include
#include
using namespace std;
int k,e,num[100],cnt;
struct node
{
int v;
node *next[26];
};
node *newnode()
{
node *p=new node;
p->v=0;
int i;
...
分类:
其他好文 时间:
2014-07-31 20:46:07
阅读次数:
216
Long 數據類型的特點1、LONG 数据类型中存储的是可变长字符串,最大长度限制是2GB。2、对于超出一定长度的文本,基本只能用LONG类型来存储,数据字典中很多对象的定义就是用LONG来存储的。1、LONG 数据类型中存储的是可变长字符串,最大长度限制是2GB。2、对于超出一定长度的文本,基本只...
分类:
数据库 时间:
2014-07-31 19:55:27
阅读次数:
208
import?urllib.request
#jk409??2014-7-31?by?python3.4编写用于[批量]查询IP地址国家区域
def?chaxun(ip_addr):
????ip_addr2=ip_addr
????domain_addr=‘http://ip.taobao.com/service/getIpInfo...
分类:
编程语言 时间:
2014-07-31 17:23:27
阅读次数:
251
学了这么久,才发现原来还有好多基础知识根本不会...标准类型:整型 int 布尔型 bool 长整型 long 浮点型 float 复数型 complex 字符串 str 列表 list元组 tuple 字典 dict 其他内建类型:类型对象的类型 typeNone NoneType文件 file函...
分类:
编程语言 时间:
2014-07-31 16:34:46
阅读次数:
274
glusterfs文件系统是一个分布式的文件系统,但是与很多分布式文件系统不一样,它没有元数服务器,听说swift上也是应用了这个技术的。glusterfs中每个xlator的配置信息都是用dict进行管理的。dict这玩意儿,说白了就是一个hash表,是一个key/value的内存数据库。今天.....
分类:
其他好文 时间:
2014-07-31 16:24:47
阅读次数:
229
解题报告
思路:
字典树应用,dfs回溯遍历字典树
#include
#include
#include
using namespace std;
struct node {
int v;
node *next[26];
};
int l,m,cnt;
char str[100],ch[100],dic[5500][100];
node *newnode()
{
...
分类:
其他好文 时间:
2014-07-31 00:05:35
阅读次数:
283
A - Colored Sticks
Time Limit:5000MS Memory Limit:128000KB 64bit IO Format:%I64d & %I64u
Submit Status
Description
You are given a bunch of wooden sticks. Each endpoint of each...
分类:
其他好文 时间:
2014-07-30 17:45:54
阅读次数:
246
#!/bin/bash#文件名:checkword.shword=$1grep "^$1$" /usr/share/dict/linux.words -qif [ $? -eq 0 ];then echo $word is a dictionary word;else e...
分类:
其他好文 时间:
2014-07-30 17:10:13
阅读次数:
180