Update main.c

This commit is contained in:
tursom 2018-02-15 20:43:21 +08:00 committed by GitHub
parent 9cb4de7fbb
commit bbb8c374ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
main.c
View File

@ -1,6 +1,6 @@
/*
*
* Θ(n*(n/ln(n)))
* O(n*ln(n))
*/
#include <stdio.h>
@ -155,6 +155,9 @@ 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;
}
}