摘要: Java学习网站http://www-900.ibm.com/developerWorks/cn/java/index.shtml IBM的JAVA专题——永远的蓝色巨人http://www.huihoo.com 灰狐动力——Enterprise Open Sourcehttp://www.jdon 阅读全文
posted @ 2016-09-16 14:01 请叫我凯凯大人 阅读(921) 评论(0) 推荐(0) 编辑
摘要: 将博客搬至CSDN 阅读全文
posted @ 2018-04-23 17:08 请叫我凯凯大人 阅读(126) 评论(0) 推荐(0) 编辑
摘要: "> My JSP 'reg.jsp' starting page --> 用户注册 用户名: 爱... 阅读全文
posted @ 2016-09-17 20:19 请叫我凯凯大人 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #define LL long long using namespace std; const int maxn=105; const int mod=1e6+7; int T,n,a[maxn],b[maxn]; LL fac[maxn]; int vis[maxn]; void set(int high) { fac[0... 阅读全文
posted @ 2016-09-16 11:19 请叫我凯凯大人 阅读(233) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int Prim( int n) { int i=2,cnt=0; while(n>0&&n>=i) { if(n%i==0) { cnt++; while(n%i==0) { ... 阅读全文
posted @ 2016-06-04 18:50 请叫我凯凯大人 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: 题目:学生信息管理系统--(顺序表) 作者:姜莹,汪凯双,信宇 主要功能:运用数据结构中的顺序表结构对学生信息进行存储,简单高效实现对学生信息的增删改查,文件操作,排序等。其中运用数据结构中哈希,二分等算法对学生信息进行快速高效查找。运用三种排序算法(直接插入排序,选择排序,快速排序)对学生信息进行 阅读全文
posted @ 2016-06-01 15:08 请叫我凯凯大人 阅读(8318) 评论(0) 推荐(0) 编辑
摘要: 题目:学生信息管理系统--(链表) 作者:姜莹,汪凯双,信宇 主要功能:考虑到学生成绩管理系统一经建立不仅进行查询而且需要频繁的进行插入和删除,运用数据结构中的单链表结构对学生信息进行存储。简单实现了对学生信息的增,删,改,查,排序,对学生信息的文件操作(保存,读取)。 #include <stdi 阅读全文
posted @ 2016-06-01 14:46 请叫我凯凯大人 阅读(6056) 评论(1) 推荐(1) 编辑
摘要: 算法复杂度(v*e) 阅读全文
posted @ 2016-04-29 20:33 请叫我凯凯大人 阅读(241) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #define MAX 505 using namespace std; int node[MAX]; void toposort(int map[MAX][MAX],int indegree[MAX],int n) { int i,j,k,t=0; for(i=1; i<=n; i++) //遍历n次 ... 阅读全文
posted @ 2016-04-29 19:12 请叫我凯凯大人 阅读(187) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include struct head { unsigned char b; //记录字符在数组中的位置 long count; //字符出现频率(权值) long parent,lch,rch; //定义哈夫曼树指针变量 char bits[256]; ... 阅读全文
posted @ 2016-04-26 20:29 请叫我凯凯大人 阅读(1050) 评论(0) 推荐(0) 编辑