上一页 1 2 3 4 5 6 7 ··· 21 下一页
摘要: Question : 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... 阅读全文
posted @ 2015-08-18 11:36 jeremyatchina 阅读(247) 评论(0) 推荐(0) 编辑
摘要: Question :Bubble sort using singly-linked list群暉面試題Idea :在linked list 交換node與node時, 我們會想用換*next的方式。但是這裡是singly-linked list.還會需要previouslynode。其實這裡單純直接... 阅读全文
posted @ 2015-08-17 15:10 jeremyatchina 阅读(334) 评论(0) 推荐(0) 编辑
摘要: Question :Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[... 阅读全文
posted @ 2015-08-16 14:51 jeremyatchina 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1.[下載原始碼]UsingRapidSVN用checkout http://l1j-tw-99nets.googlecode.com/svn/trunk/L1J-TW_3.50c/2.[編譯原始碼]裝好ant 新增系統變數:ANT_HOME,內容:c:\develop\apache-ant-1... 阅读全文
posted @ 2015-06-11 11:27 jeremyatchina 阅读(16533) 评论(1) 推荐(1) 编辑
摘要: If you want random data in a Linux/Unix type OS, the standard way to do so is to use /dev/random or /dev/urandom. These devices are special files. The... 阅读全文
posted @ 2014-11-08 16:25 jeremyatchina 阅读(477) 评论(0) 推荐(0) 编辑
摘要: Exploit Development Process● Occupy EIP● Find the offset(s)● Determine the attack vector● Build the exploit● Test/debug the exploitpeda 是一款由python寫的ex... 阅读全文
posted @ 2014-11-03 09:30 jeremyatchina 阅读(755) 评论(0) 推荐(0) 编辑
摘要: class Animal: def __init__(self, name): # Constructor of the class self.name = name def talk(self): # Abstract method, de... 阅读全文
posted @ 2014-10-26 20:45 jeremyatchina 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Python : Data EncapsulationThe following table shows the different behaviour:NameNotationBehaviournamePublicCan be accessed from inside and outside_na... 阅读全文
posted @ 2014-10-26 20:40 jeremyatchina 阅读(243) 评论(0) 推荐(0) 编辑
摘要: http://technet.microsoft.com/en-us/library/cc939835.aspx 阅读全文
posted @ 2014-10-22 17:39 jeremyatchina 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Becuz it is a jpython code, we can use it in Sikuli.from time import strftime, gmtimefrom java.awt import Toolkitfrom java.awt import Robotfrom java.a... 阅读全文
posted @ 2014-10-21 12:41 jeremyatchina 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 21 下一页