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

那些让你觉得自己是个傻B的题目集锦(大神的降维打击合集)

时间:2018-12-09 18:48:38      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:one   lin   convert   treenode   ref   recursion   tag   tno   init   

一起过来排好队,进来挨打

1.Leetcode tag-LinkList 109.convert sorted list to binary search tree

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    TreeNode* sortedListToBST(ListNode* head) {
        return RecursionListToBST(head,NULL);
    }
    TreeNode* RecursionListToBST(ListNode* head,ListNode *tail){
        // linklist is empty
        if(head==tail)
            return NULL;
        // only one node in the tree
        if(head->next==tail){
            TreeNode *root=new TreeNode(head->val);
            return root;
        }
        // search the middle node 
        // excllent code segment need memorize.
        ListNode *mid=head;
        ListNode *temp=head;
        while(temp!=tail && temp->next!=tail){
            mid=mid->next;
            temp=temp->next->next;
        }
        TreeNode *root=new TreeNode(mid->val);
        root->left=RecursionListToBST(head,mid);
        root->right=RecursionListToBST(mid->next,tail);
        return root;
    }
};

// 寻找链表重点这个真的是棒

 ListNode *mid=head;
 ListNode *temp=head;
 while(temp!=tail && temp->next!=tail){
         mid=mid->next;
         temp=temp->next->next;
  }

那些让你觉得自己是个傻B的题目集锦(大神的降维打击合集)

标签:one   lin   convert   treenode   ref   recursion   tag   tno   init   

原文地址:https://www.cnblogs.com/GeekDanny/p/10092336.html

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