摘要: "Google" 2016 11 09 "1.线性表 Array" 2016 10 30 "hello world!" 阅读全文
posted @ 2018-07-24 01:42 typewriter 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Text It's very easy to make some words bold and other words italic with Markdown. You can even "link to Google!" Lists Sometimes you want numbered lis 阅读全文
posted @ 2018-07-24 01:29 typewriter 阅读(231) 评论(0) 推荐(0) 编辑
摘要: fatal.h binomial.h binomial.c 阅读全文
posted @ 2017-02-10 03:34 typewriter 阅读(341) 评论(0) 推荐(0) 编辑
摘要: fatal.h skewheap.h queue.h skewheap.c queue.c testskew.c c include "skewheap.h" include define MaxSize 32 int main() { PriorityQueue H; int i, j, MinE 阅读全文
posted @ 2017-02-09 01:43 typewriter 阅读(534) 评论(0) 推荐(0) 编辑
摘要: fatal.h leftheap.h queue.h leftheap.c queue.c testleft.c c include "leftheap.h" include define MaxSize 10 int main() { PriorityQueue H; int i, j, MinE 阅读全文
posted @ 2017-02-08 10:59 typewriter 阅读(281) 评论(0) 推荐(0) 编辑
摘要: fatal.h binheap.h binheap.c testheap.c c include "binheap.h" include define MaxSize (33) int main() { PriorityQueue H; int i, j; H = Initialize(MaxSiz 阅读全文
posted @ 2017-02-08 02:47 typewriter 阅读(318) 评论(0) 推荐(0) 编辑
摘要: fatal.h hashquad.h hashquad.c testhash.c c include "hashquad.h" include define NumItems 110 int main() { HashTable H; Position P; int i; int j = 0; in 阅读全文
posted @ 2017-02-06 19:21 typewriter 阅读(279) 评论(0) 推荐(0) 编辑
摘要: fatal.h hashsep.h hashsep.c testhash.c c include "hashsep.h" include define NumItems 400 int main() { HashTable H; Position P; int i; int j = 0; int C 阅读全文
posted @ 2017-01-17 02:05 typewriter 阅读(229) 评论(0) 推荐(0) 编辑
摘要: fatal.h avltree.h queue.h avltree.c queue.c testavl.c c include "avltree.h" include "queue.h" include int main() { AvlTree T; int i; int j = 0; T = Ma 阅读全文
posted @ 2017-01-10 17:21 typewriter 阅读(292) 评论(0) 推荐(0) 编辑
摘要: fatal.h tree.h tree.c testtree.c c include "tree.h" include int main() { SearchTree T; Position P; int i; int j = 0; T = MakeEmpty(NULL); for (i = 0; 阅读全文
posted @ 2016-12-26 17:03 typewriter 阅读(195) 评论(0) 推荐(0) 编辑