程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> LeetCode -- Insertion Sort List

LeetCode -- Insertion Sort List

編輯:C++入門知識

LeetCode -- Insertion Sort List


題目描述:
Sort a linked list using insertion sort.


思路:
實現一個插入排序list類,遍歷鏈表逐個添加到list,使用list創建新鏈表。




實現代碼:



/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     public int val;
 *     public ListNode next;
 *     public ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode InsertionSortList(ListNode head) {
        if(head == null || head.next == null){
    		return head;
    	}
    	var list = new SortedNodes();
    	while(head != null){
    		list.Add(head.val);
    		head = head.next;
    	}
    	
    	ListNode h = null;
    	ListNode node = null;
    	var c = 0;
    	foreach(var n in list.Nodes){
    		if(c == 0){
    			node = new ListNode(n);
    			h = node;
    		}else{
    			node.next = new ListNode(n);
    			node = node.next;
    		}
    		
    		c++;
    	}
    	return h;
	
    }


public class SortedNodes{
	private IList _nodes;
	public SortedNodes(){
		_nodes = new List();
	}
	public void Add(int n)
	{
		for(var i = 0;i < _nodes.Count; i++){
			if(n < _nodes[i]){
				_nodes.Insert(i,n);
				return;
			}
		}
		
		_nodes.Add(n);
	}
	
	public IList Nodes{
		get{
			return _nodes;
		}
	}
}


}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved