摘要: #include #include #include #include typedef struct bucket_item s_bucket_item; struct bucket_item{ int value; s_bucket_item * next; }; typedef struct bucket s_bucket; struct bucket{ s_buc... 阅读全文
posted @ 2016-10-15 21:45 ShellHan 阅读(145) 评论(0) 推荐(0) 编辑
摘要: // // main.c // binarySort // // Created by 韩雪滢 on 10/15/16. // Copyright © 2016 韩雪滢. All rights reserved. // //复杂度O(nlogn) #include int a[10]={21,56,43,12,3,99,56,23,2,12}; int main() { int... 阅读全文
posted @ 2016-10-15 20:45 ShellHan 阅读(1062) 评论(0) 推荐(0) 编辑
摘要: ※ 求一个数组的长度 ※ 自定义结构的动态数组 ※求一个数的符号+/- 阅读全文
posted @ 2016-10-15 19:24 ShellHan 阅读(177) 评论(0) 推荐(0) 编辑