Fork me on GitHub
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 41 下一页
摘要: "Wow," Mike said. "It's snowing."I looked at the little cotton fluffs that were building up along the sidewalk and swirling erratically past my face. 阅读全文
posted @ 2016-11-27 11:38 LinkinStar 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 归并排序的属性 时间复杂度 O(n log n)空间复杂度 O(n)稳定性 稳定发明者 约翰·冯·诺伊曼 (就是那个计算机冯·诺伊曼体系的人) 归并排序是建立在归并操作上的一种有效的排序算法,该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。 归并排序是建立在归并操作上 阅读全文
posted @ 2016-11-26 22:36 LinkinStar 阅读(394) 评论(0) 推荐(0) 编辑
摘要: The rain stayed soft over the weekend, quiet, so I was able to sleep well. 这周末雨一直下的很柔很安静,所以我能睡的很好。 People greeted me in the parking lot Monday morning 阅读全文
posted @ 2016-11-25 21:23 LinkinStar 阅读(151) 评论(0) 推荐(0) 编辑
摘要: By Friday I was perfectly comfortable entering my Biology class, nolonger worried that Edward would be there. 到了星期五我很舒服的走进我的生物教室,不再担心Edward会出现在那里了 For 阅读全文
posted @ 2016-11-24 22:52 LinkinStar 阅读(189) 评论(0) 推荐(0) 编辑
摘要: The rest of the week was uneventful. I got used to the routine of my classes. 这周剩下的时间都是平淡无事的。我就是正常的上课。 By Friday I was able to recognize, if not name, 阅读全文
posted @ 2016-11-23 22:14 LinkinStar 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 链表反转有两种常见方式。下面从图中详细解释。其中带有部分核心代码,最后上完整代码。 迭代法 //首先定义三个变量 PNODE pre = NULL; PNODE now = pHead->pNext; PNODE next = NULL; next = now->pNext;//先保存下一个节点 n 阅读全文
posted @ 2016-11-22 23:38 LinkinStar 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: I backpedaled. "They seemed nice enough to me. I just noticed they keptto themselves. 我改口说道,他们看起来对我来说不错,我只是注意到他们总是独来独往。 They're all very attractive," 阅读全文
posted @ 2016-11-22 22:29 LinkinStar 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 新开的这个分类是建立在算法这个分类的基础之上的。 算法这个分类主要是一些题解,一些算法的简单了解和记忆。 但是始终缺乏一件东西,那就是系统和分类。 我渐渐开始意识到,其实算法和数据结构不能像之前那样零散的记忆了。 也需要适当的整理和总结。 于是新开了这个分类,目的也就是总结那些之前用过的算法。 还有 阅读全文
posted @ 2016-11-22 15:23 LinkinStar 阅读(195) 评论(0) 推荐(0) 编辑
摘要: "People in this town," he muttered. "Dr. Cullen is a brilliant surgeon who could probably work in any hospital in the world, make ten times the salary 阅读全文
posted @ 2016-11-21 23:07 LinkinStar 阅读(140) 评论(0) 推荐(0) 编辑
摘要: I called him in when dinner was ready, and he sniffed appreciatively as he walked into the room. 当晚饭准备好的时候我叫他吃饭,然后当他进入房间的时候他吸气般的表示感激。 "Smells good, Be 阅读全文
posted @ 2016-11-20 23:46 LinkinStar 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 41 下一页