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

5
main.c
View File

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