My latpad screen is too light, that cause my eye is very imcomfortable. So I spend time to hanle this problem. At result , I find the follow method:1....
分类:
其他好文 时间:
2014-10-21 10:00:03
阅读次数:
172
Description
Jenny is a warehouse keeper. He writes down the entry records everyday. The record is shown on a screen, as follow:
There are only two buttons on the screen. Pressing the button i...
分类:
其他好文 时间:
2014-10-20 15:06:03
阅读次数:
259
在模块初始化函数最后返回一个1,其实0才是约定的“成功“的定义。 出现下列错误: sys_init_module: ‘usbpll‘->init suspiciously returned 17, it should follow 0/-E convention sys_init_module: loading mo...
分类:
其他好文 时间:
2014-10-17 22:04:48
阅读次数:
236
本文选自《Java程序员,上班那点事儿》有时候如果应聘到了一个有外资背景的公司或者这个公司的很多人都有海外或外资工作背景时,你也许还会用到一些日常工作交流时候的词汇。 比如我们看一下某主管开会时的发言:小王,请你尽快“Push”一下这件事,按照前期咱们定下来的“Plan”来“follow”这个“ca...
分类:
编程语言 时间:
2014-10-17 21:49:03
阅读次数:
276
集百家之长, 归我所用 - Follow Basic Coding Style1.代码能够清晰的表达你的思路2.代码应该具备自解释能力,注释代码别是单纯解释语句,这种注释毫无疑义3.编码的缩进和排版规范4.所有的函数和变量应有他人容易理解的名字5.将Tab键改用为4个空格字符6.减少但个函数的长度,...
分类:
其他好文 时间:
2014-10-17 20:12:36
阅读次数:
220
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Solution:快慢指针。 1 /** 2 * Definition for s....
分类:
其他好文 时间:
2014-10-17 15:16:48
阅读次数:
179
题目描述:Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra spac...
分类:
其他好文 时间:
2014-10-15 11:10:10
阅读次数:
219
题目描述:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?解题方案:使用快慢指针,如果有环,快指针肯定会追上慢指针。下面是该题的代码...
分类:
其他好文 时间:
2014-10-15 00:03:19
阅读次数:
183
SummaryThis article discusses some best practices to follow for writing efficient, understandable JavaScript.IntroductionWriting a best practice artic...
分类:
编程语言 时间:
2014-10-14 19:26:38
阅读次数:
328
Search in Rotated Sorted Array II
Total Accepted: 18500 Total
Submissions: 59945My Submissions
Follow up for "Search in Rotated Sorted Array":
What if duplicates are allowed?
Would this...
分类:
其他好文 时间:
2014-10-10 21:35:14
阅读次数:
239