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

leetcode - Convert Sorted List to Binary Search Tree

时间:2014-10-03 17:21:45      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   for   sp   art   c   on   

Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
struct ListNode
{
	int val;
	ListNode *next;
	ListNode(int x) : val(x), next(NULL) {}
};
struct TreeNode
{
	int val;
	TreeNode *left;
	TreeNode *right;
	TreeNode(int x) :val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
    TreeNode *sortedListToBST(ListNode *head) {
		int n = 0;
		ListNode *p = head;
		while(p != NULL)
		{
			p = p->next;
			n++;
		}
		return ListToBST(head,0,n-1);
    }
private:
	TreeNode *ListToBST(ListNode *&head,int start, int end)
	{
		if(start > end) return NULL;
		int mid = (start + end) / 2;
		TreeNode *left = ListToBST(head,start,mid - 1);
		TreeNode *node = new TreeNode(head->val);
		node->left = left;
		head = head->next;
		node->right = ListToBST(head,mid + 1,end);
		return node;
	}
};


leetcode - Convert Sorted List to Binary Search Tree

标签:style   color   io   ar   for   sp   art   c   on   

原文地址:http://blog.csdn.net/akibatakuya/article/details/39756057

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