/*** Definition for singly-linked list.* struct ListNode {* int val;* ListNode *next;* ListNode(int x) : val(x), next(NULL) {}* };* Sort a linked list in O(n log n) time using constant space complexity.*/#include #include #include #include
主函数里关于链表的建立。使用了new从自由存储区(堆)中分配了内存,链表一直使用到程序结束,有必要显示的用delete进行内存释放吗?
关于链表的建立能够不采用new要么malloc分配还没有,还有其他的方法你?
版权声明:本文博主原创文章,博客,未经同意不得转载。