博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode]sort list
阅读量:5142 次
发布时间:2019-06-13

本文共 1583 字,大约阅读时间需要 5 分钟。

/*** 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
using namespace std;struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {}};class Solution {public: ListNode *sortList(ListNode *head) { if (head == NULL || head->next == NULL)return head; map
> mp; ListNode* pnode = head; while (pnode) { mp[pnode->val].push_back(pnode); pnode = pnode->next; } map
>::iterator it = mp.begin(); head = NULL; ListNode* cur = NULL; for (; it != mp.end(); it++) { vector
vec = (*it).second; for (int i = 0; i < vec.size(); i++) { if (head == NULL){ head = vec[i]; cur = vec[i]; } else{ cur->next = vec[i]; cur = cur->next; } } } cur->next = NULL; return head; }};int main(){ fstream fin("test.txt"); struct ListNode* head(0); int val = 0; //string s1 = "asdf"; //string s2(s1); //if (&s1 == &s2){ // int a = 1; //} while (fin >> val){ if (NULL == head){ head = new ListNode(val); } else { ListNode *temp = head; while (temp->next != NULL) temp = temp->next; temp->next = new ListNode(val); } } Solution solution; ListNode *new_head = solution.sortList(head); return 0;}

主函数里关于链表的建立。使用了new从自由存储区(堆)中分配了内存,链表一直使用到程序结束,有必要显示的用delete进行内存释放吗?

关于链表的建立能够不采用new要么malloc分配还没有,还有其他的方法你?

版权声明:本文博主原创文章,博客,未经同意不得转载。

转载于:https://www.cnblogs.com/gcczhongduan/p/4792411.html

你可能感兴趣的文章
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JAVA开发环境搭建
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
php match_model的简单使用
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
移动开发平台-应用之星app制作教程
查看>>
如何在maven工程中加载oracle驱动
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
下一代操作系统与软件
查看>>