摘要:
好高兴啊。韩国的会议终于中了。Title: NCM2010: Paper Acceptance Notification.Notification for accepted paper(Click here to download the IEEE format: MS-WORD)Important dates NCM2010(IEEE) Proceeding :- Conference Date... 阅读全文
摘要:
位向量:就是使用位逻辑运算实现位向量中指定位的设置,清零,探测。下面代码是编程珠玑上的实现.#define BITSPERWORD 32#define SHIFT 5#define MASK 0x1F#define N 10000000int a[1 + N/BITSPERWORD];void set(int i) { a[i>>SHIFT] |= (1<<(i &... 阅读全文