/**
 * struct ListNode {
 *	int val;
 *	struct ListNode *next;
 *	ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
#include <vector>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param head ListNode类 the head node
     * @return ListNode类
     */
    ListNode* sortInList(ListNode* head) {
        // write code here
        // 利用multiset容器,元素可能重复
        multiset<int> ms;
        while(head)
        {
            ms.emplace(head->val);
            head = head->next;
        }

        ListNode* ans = new ListNode(-1);
        ListNode* temp = ans;
        for(auto it=ms.begin(); it!=ms.end(); ++it)
        {
            ListNode* next = new ListNode(*it);
            temp->next = next;
            temp = temp->next;
        }

        return ans->next;
    }
};