会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
郑哲
博客园
首页
新随笔
新文章
联系
订阅
管理
上一页
1
···
15
16
17
18
19
2017年2月27日
二元搜索算法(分治法)
摘要: 1 #include 2 using namespace std; 3 4 5 int Binary_search(int *a, int p, int r, int x) 6 { 7 if (p > r) 8 return false; 9 int midpoint = (p + r) / 2; 10 if (a[midpoint]...
阅读全文
posted @ 2017-02-27 22:16 郑哲
阅读(353)
评论(0)
推荐(0)
编辑
2017年2月25日
循环队列(弥补队列顺序储存的不足)
摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAXSIZE 10 6 struct quene 7 { 8 int count; 9 int number[MAXSIZE]; 10 int front; 11 int end; 12 }; 13 14 15 void in...
阅读全文
posted @ 2017-02-25 11:01 郑哲
阅读(184)
评论(0)
推荐(0)
编辑
队列的顺序储存
摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAXSIZE 10 6 struct quene 7 { 8 int count; 9 int number[MAXSIZE]; 10 int front; 11 int end; 12 }; 13 14 15 void in...
阅读全文
posted @ 2017-02-25 10:52 郑哲
阅读(148)
评论(0)
推荐(0)
编辑
队列链式结构
摘要: #include<iostream>#include<ctime>using namespace std; struct node{ int number; node *next;}; struct quene{ int count; node *front; node *end;}; void i
阅读全文
posted @ 2017-02-25 10:25 郑哲
阅读(167)
评论(0)
推荐(0)
编辑
2017年2月24日
链栈
摘要: 1 #include 2 #include 3 using namespace std; 4 5 struct linknode 6 { 7 int number; 8 linknode *next; 9 }; 10 11 12 struct linkstack 13 { 14 int count; 15 linknode *top; 16...
阅读全文
posted @ 2017-02-24 13:29 郑哲
阅读(101)
评论(0)
推荐(0)
编辑
两栈共享空间
摘要: 1 #define MAXSIZE 100 2 3 struct doublestack 4 { 5 int number[MAXSIZE]; 6 int top1=-1; 7 int top2=MAXSIZE; 8 }; 9 10 11 void Push(doublestack *s, int e, int n) 12 { 13 //栈...
阅读全文
posted @ 2017-02-24 13:03 郑哲
阅读(138)
评论(0)
推荐(0)
编辑
栈的顺序结构
摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAXSIZE 10 6 7 struct stack 8 { 9 int number[MAXSIZE]; 10 int top=-1; 11 }; 12 13 bool Push(stack *s, int e) 14 { 15 i...
阅读全文
posted @ 2017-02-24 11:15 郑哲
阅读(134)
评论(0)
推荐(0)
编辑
双向链表的简单实现
摘要: 1 #include<iostream> 2 #include<ctime> 3 using namespace std; 4 5 struct list 6 { 7 int number; 8 list *prior; 9 list *next; 10 }; 11 12 13 int FindLi
阅读全文
posted @ 2017-02-24 10:38 郑哲
阅读(100)
评论(0)
推荐(0)
编辑
2017年2月23日
单向链表的实现
摘要: #include<iostream>#include<ctime>using namespace std; struct list{ int number; list *next;}; int FindLinkList(list *t, int i){ int j = 0; list *p = t;
阅读全文
posted @ 2017-02-23 20:25 郑哲
阅读(108)
评论(0)
推荐(0)
编辑
上一页
1
···
15
16
17
18
19