上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 1 #include 2 #include 3 4 /** 5 * 【数据结构 C描述】有两个整数集合 A 和 B 分别用两个线性表 LA 和 LB 表示, 6 * 求:一个新的集合C=A∪B,C仍然为纯集合,线性表采用链式存储方式。 7 * 注:本算法中LA, LB为递增有序情况,无序的话可以考虑暴力 8 * 此情况下复杂度为o(m+n), m, ... 阅读全文
posted @ 2019-07-10 20:49 sqdtss 阅读(2186) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 /**** 3 * 此算法为满二叉树通过先序遍历数组获得后序遍历数组 4 ***/ 5 // a[]为pre数组,b[]为post数组 6 void get_lrn_by_nlr(char a[], int a_left, int a_right, char b[], int b_left, int b_right) 7 { 8 if (... 阅读全文
posted @ 2019-07-08 19:52 sqdtss 阅读(543) 评论(0) 推荐(0) 编辑
摘要: Since our chief business with them is to enable them to share in a common life we cannot help considering whether or not we are forming the powers whi 阅读全文
posted @ 2019-05-07 22:48 sqdtss 阅读(142) 评论(0) 推荐(0) 编辑
摘要: The behavioral sciences have been slow to change partly because the explanatory items often seem to be directly observed and partly because other kind 阅读全文
posted @ 2019-05-07 22:43 sqdtss 阅读(144) 评论(0) 推荐(0) 编辑
摘要: The Greeks assumed that the structure of language had some connection with the process of thought, which took root in Europe long before people realiz 阅读全文
posted @ 2019-05-07 22:37 sqdtss 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 4 int *temp; // 暂存数组 5 // 归并 6 void merge(int sz[], int m, int n, int p) 7 { 8 int i = m, j = n + 1, k = m; 9 while (i temp[j]) 12 sz[k++] = t... 阅读全文
posted @ 2019-04-25 08:30 sqdtss 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 对sb而言很难想象一段..的时光。 阅读全文
posted @ 2019-04-23 22:38 sqdtss 阅读(438) 评论(0) 推荐(0) 编辑
摘要: Social scinence is that branch of intellectual enquiry which seeks to study humans and their endeavors in the same resoned, orderly, systematic, and d 阅读全文
posted @ 2019-04-23 22:28 sqdtss 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Allen's contribution was to take an assumption we all share——that because we are not robots we therefore control our thoughts——and reveal its erroneou 阅读全文
posted @ 2019-04-21 22:12 sqdtss 阅读(164) 评论(0) 推荐(0) 编辑
摘要: They may teach very well, and more than earn their salaries, but most of them make little or no independent reflections on human problems which involv 阅读全文
posted @ 2019-04-21 22:06 sqdtss 阅读(95) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页