上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 32 下一页
摘要: 今天上午进行了万革始的第二次面试,总结起来就是很差。。。。。。。到了晚上写面经心里还是不舒服! 下面首先记下流水账:10点25开始面试,早上8点50就到实验室准备了,说了下自我介绍,面试前很紧张,看以前写的博客感觉也看不进去,就看火影去了,开始面试,是面试官口述英语,很多不明白,题目是给定两个字符流 阅读全文
posted @ 2017-10-11 20:34 zqlucky 阅读(2101) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-10-05 16:42 zqlucky 阅读(176) 评论(2) 推荐(0) 编辑
摘要: 为什么需要半关闭 为了保证数据的完全交换,应该留出足够长的连接时间,但是应该留出多长的时间呢? 比如客户端连接到服务器,服务器将一个文件传输给客户端,客户端收到后发送确认数据给服务器端 这时服务器端只需要连续的传输文件数据,而客户端却无法知道需要接收数据到何时,客户端也不可能无休止的调用输入函数,因 阅读全文
posted @ 2017-10-02 19:33 zqlucky 阅读(717) 评论(0) 推荐(0) 编辑
摘要: cd ~ 进入桌面 cd /进入计算机 mkdir 创建文件夹 mv移动文件 mv 源文件 目标文件 记得前面加/。 阅读全文
posted @ 2017-10-01 16:59 zqlucky 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 143. Reorder List Given a singly linked list L: L0?L1?…?Ln-1?Ln,reorder it to: L0?Ln?L1?Ln-1?L2?Ln-2?… You must do this in-place without altering the 阅读全文
posted @ 2017-09-27 14:07 zqlucky 阅读(184) 评论(0) 推荐(0) 编辑
摘要: getchar:执行getchar()函数时,首先从输入缓存区读取字符,直到输入缓存区为空时才等待从键盘继续输入。scanf()之间不要有printf操作。 逗号表达式 a= (++a,1,2),只取最后一个操作进行赋值。 ++a,a++;++a是右值,原址操作。a++是左值,拷贝一份再操作,最后赋 阅读全文
posted @ 2017-09-27 13:53 zqlucky 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/sort-list/description/ Sort a linked list in O(n log n) time using constant space complexity. 链表类题目找中间点使用双指针算法,要判断head - 阅读全文
posted @ 2017-09-27 09:49 zqlucky 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 86. Partition List Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You s 阅读全文
posted @ 2017-09-26 21:37 zqlucky 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 82. Remove Duplicates from Sorted List II Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from 阅读全文
posted @ 2017-09-26 20:29 zqlucky 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 83. Remove Duplicates from Sorted List Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1- 阅读全文
posted @ 2017-09-26 19:58 zqlucky 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 32 下一页