public void TestSortList() { int[] nums = { 4, 2, 1, 3 }; ListNode l1 = ListNode.CreateListNode(nums); ReverseLinkedList.SortList(l1); }