@breakerthb
2017-07-14T02:10:46.000000Z
字数 538
阅读 1258
URL
C/C++
STL - vector
STL - list
string
deque
简单插入排序
归并排序
HashTableMap
LinkedHashMap
(value & (value -1)) == 0
if(close(STDIN_FILENO) == -1){
exit(0);
}
if(close(STDOUT_FILENO) == -1){
exit(0);
}
if(close(STDERR_FILENO) == -1){
exit(0);
}
getinfo.c:200:13: warning: incompatible implicit declaration of built-in function 'memset' [enabled by default]
memset(gnValueBak, 0, BUF_SIZE * sizeof(unsigned int));
解决:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>