码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode -- Insertion Sort List

时间:2015-10-14 01:40:03      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

题目描述:
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<int> _nodes;
	public SortedNodes(){
		_nodes = new List<int>();
	}
	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<int> Nodes{
		get{
			return _nodes;
		}
	}
}


}


版权声明:本文为博主原创文章,未经博主允许不得转载。

LeetCode -- Insertion Sort List

标签:

原文地址:http://blog.csdn.net/lan_liang/article/details/49108365

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!