修复bug

This commit is contained in:
tursom 2018-02-16 14:21:46 +08:00
parent 2784df786c
commit 439deb8744

7
main.c
View File

@ -1,6 +1,6 @@
/*
*
* O(n*ln(n))
* Θ(n*(n/ln(n)))
*/
#include <stdio.h>
@ -155,9 +155,6 @@ int main(int argc, char *argv[]) {
for (int i = 0; i < numbers; i++)
printf("%u\n", buff[i]);
printf("%u numbers\n", numbers);
//释放内存
free(buff)
return 0;
}
}