2012年12月30日 星期日

[Person] Alan Turing

謎樣的計算機科學之父

Turing test=> current competition: Loebner Prize

相關介紹

2012年12月24日 星期一

[Programming] C中的 #pragma

#pragma 預處理指令

2012年12月17日 星期一

[Computer] 計算機圖形學

[Programming] 以單一空格取代重複空格

  1 #include <stdio.h>

  2 // This code transform multple blanks to single blank
  3 #define NONBLANK 'a'
  4
  5 int main(){
  6         int c=0;
  7         int lastBlank=NONBLANK;
  8         while((c=getchar())!=EOF){
  9                 if(' '!=c){
 10                         putchar(c);
 11                 }else{
 12                         if(lastBlank!=' '){
 13                                 putchar(c);
 14                         }
 15                 }
 16                 lastBlank=c;
 17         }
 18         return 0;
 19 }

[Linux] EOF

Linux中以 Control+D 來表示 EOF (End-Of-File), MicroSoft Windows 則是 Control+Z

[Programming] C用 printf印八進位與十六進位

利用 printf("%o %x", numOct, numHex); 可分別印出八進位與十六進位的數字

[Music] 烏克麗麗


  • 四弦分別是 A、E、C、G , 立起來由右至左 (第一弦為最右方)
  • 頻率分別是 440Hz、239.63Hz、261.63Hz、392Hz

2012年12月13日 星期四

[Research] 清大資工論文等級

沒想到系上的論文等級只能以紙本抄閱@@

以下節錄一些系上認定標準, 僅列網路相關

A級:
IEEE transactions on Networking
IEEE transactions on Communications
IEEE selected area on Communications
IEEE transaction on Mobile Computing
IEEE transaction on Computers
ACM transaction on Modeling & Computer Simulation

B級:
IEEE transaction on Wireless Communications
IEEE Magazines
IEEE computer magazines
IEEE transaction on Vehicular Technology
Communications of ACM

Springer Mobile Networks and applications
Journal of High Speed Networks
Wireless networks
networks
Journal of Computer Communications

不過個人覺得, 由於 Impact factor是每年更新的, 這些資料似乎還是上線隨時更新會比較好一些. 底下附上交大資工的網路系統連結, 裡面有 A、B級 Journal list及 A、B級 Conference,對於各領域想研究不錯的期刊論文都有幫助:

交通大學資訊工程系博士班論文概況系統 (底下的論文等級)