qsort函数—(排序)
int compare(int*a ,int*b) { return *(int*)a-*(int*)b;//升序 } qsort(arr,arrSize,sizeof(int),compare); //使用stdlib.h文件中的qsort函数进行快速排序 //O(n*log(n))
memset函数
void *memset(void *str, int c, n) //将c剪贴到str的前n个字符
strcpy函数
char *strcpy(char *dest, const char *src) //复制src到dest
malloc( )
void *malloc(size_t size) 分配所需的内存空间,返回一个指向它的指针
int* ret = malloc(sizeof(int) * numsSize);
malloc()不会设置内存为0;
calloc( )
int *pp = (int *)calloc(20, sizeof(int));
malloc,calloc,relloc的区别
。。。