024.自行製作字串函數 strcat()。
- Nov 16 Sun 2008 09:44
024.自行製作字串函數 strcat()。
- Nov 13 Thu 2008 23:02
[轉載] 工作五年之後的十三種痛
1、很快你就會發現三四萬的工資不算什麼。
2、很快你就會發現金錢的穫得是以時間和個人生活的犧牲為代價的。
3、很快你就會發現自己有點小錢但不幸福。
- Nov 11 Tue 2008 07:49
[STL] sort algorithm
利用sort algorithm寫一個排序範例.....
- Nov 08 Sat 2008 23:16
Windows 是否有 2000 個執行緒的上限?
Does Windows have a limit of 2000 threads per process?
Often I see people asking why they can't create more than around 2000 threads in a process. The reason is not that there is any particular limit inherent in Windows. Rather, the programmer failed to take into account the amount of address space each thread uses.
A thread consists of some memory in kernel mode (kernel stacks and object management), some memory in user mode (the thread environment block, thread-local storage, that sort of thing), plus its stack. (Or stacks if you're on an Itanium system.)
- Nov 08 Sat 2008 23:04
什麼是ACM-ICPC?
ACM International Collegiate Programming Contest是由ACM主辦的全球性程式比賽,每年都會在全世界各地先辦regional的初賽,然後再由各regional的前一、二名晉級參加一年一度的World Final。ACM的比賽一般都是五個小時,然後大概有六到十題題目,題目的方向比較偏向演算法的分析與設計,需要參賽者腦力激盪想出解決方法,並把程式寫出來。不過一般說來程式碼不會太長,都是一兩百行之內就可以完成的。比賽的過程其實還蠻緊張有趣的,因為每答對一題就會獲得氣球,而且大家都是在同一個場地比賽,所以當看到別人拿到氣球或是自己拿到氣球時,都會覺得緊張刺激。
- Nov 08 Sat 2008 23:02
ACM Online Judge Guide
Accepted
恭喜答案正確
Wrong Answer
這是個蠻討厭的訊息,代表你的程式可以正常的執行結束,可是答案是錯的。這個時後可能就要去想想是不是什麼case沒有處理到之類的。
Presentation Error
結果正確,但格式有錯。注意空格、跳行
Compile Error
這個訊息代表你的程式碼在judge的機器上無法成功的編譯。可能要檢查是不是上傳前不小心動到程式碼,或是judge和本機的編譯環境不同。