Convert Sorted List to Binary Search Tree


Problem Statement :


Given the head of a singly linked list where elements are sorted in ascending order, convert it to a 
height-balanced
 binary search tree.

 

Example 1:


Input: head = [-10,-3,0,5,9]
Output: [0,-3,9,-10,null,5]
Explanation: One possible answer is [0,-3,9,-10,null,5], which represents the shown height balanced BST.
Example 2:

Input: head = []
Output: []
 

Constraints:

The number of nodes in head is in the range [0, 2 * 104].
-105 <= Node.val <= 105



Solution :



title-img


                            Solution in C :

int listLenth(struct ListNode* head){
    struct ListNode* temp = head;
    int cn = 0;
    while(temp){
        cn++;
        temp = temp->next;
    }
    return cn;
}

struct TreeNode* sortedArrayToBST(int* nums, int n){
    if(n <= 0)
        return NULL;
    struct TreeNode *root = malloc( sizeof(struct TreeNode));
    if(n == 1){
        
        root->val = nums[0];
        root->left = NULL;
        root->right = NULL;
    }
    else{
        root->val = nums[n/2];
        root->left = sortedArrayToBST(nums, n/2);
        root->right = sortedArrayToBST(&nums[n/2 + 1], n - 1 - n/2);   
    }
    
    return root;
}

struct TreeNode* sortedListToBST(struct ListNode* head){
    int n = listLenth(head);
    if (n == 0)
        return NULL;
    int* nums = malloc(n * sizeof(int));
    struct ListNode* temp = head;
    for(int i = 0; i < n; i++){
        nums[i] = temp->val;
        temp = temp->next;
    }
    
    return sortedArrayToBST(nums, n);
}
                        


                        Solution in C++ :

class Solution {
public:
    ListNode* middleNode(ListNode* head) {
        if(!head || !head->next)
            return head;
        ListNode* s=head;
        ListNode* f=head;
        ListNode * p= NULL;
        while(f && f->next)
        {
            p=s;
            s=s->next;
            f=f->next->next;
        }
        return p;
        
    }
    TreeNode* sortedListToBST(ListNode* head) {
        if(!head)
            return NULL;
        if(!head->next)
            return new TreeNode(head->val);
        ListNode* n=middleNode(head);
        ListNode* tmp=n->next;
        n->next=NULL;
        TreeNode * t=new TreeNode(tmp->val);
        t->left = sortedListToBST(head);
        t->right = sortedListToBST(tmp->next);
        return t;
    }
};
                    


                        Solution in Java :

class Solution {
    public TreeNode sortedListToBST(ListNode head) {
        if(head == null)
        {
            return null;
        }
       return createBST(head,null);
        
    }
    
    public TreeNode createBST(ListNode start,ListNode end)
    
    {
        if(start==end)return null;
        
        ListNode mid = middle(start,end);
        
        TreeNode root = new TreeNode(mid.val);
        root.left = createBST(start,mid);
        root.right = createBST(mid.next,end);
        
        return root;
    }
    
    public ListNode middle(ListNode head,ListNode end)
    {
             
        ListNode slow = head;
        ListNode fast = head;
        
        while(fast!= end && fast.next != end)
        {
            slow = slow.next;
            fast = fast.next.next;
        }
        
        return slow;   
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def sortedListToBST(self, head: ListNode) -> TreeNode:
        if not head:
            return None
        if not head.next:
            return TreeNode(head.val)
        slow, fast = head, head.next.next
        while fast and fast.next:
            slow = slow.next
            fast = fast.next.next
        root = TreeNode(slow.next.val)
        root.right = self.sortedListToBST(slow.next.next)
        slow.next = None
        root.left = self.sortedListToBST(head)
        return root
                    


View More Similar Problems

Game of Two Stacks

Alexa has two stacks of non-negative integers, stack A = [a0, a1, . . . , an-1 ] and stack B = [b0, b1, . . . , b m-1] where index 0 denotes the top of the stack. Alexa challenges Nick to play the following game: In each move, Nick can remove one integer from the top of either stack A or stack B. Nick keeps a running sum of the integers he removes from the two stacks. Nick is disqualified f

View Solution →

Largest Rectangle

Skyline Real Estate Developers is planning to demolish a number of old, unoccupied buildings and construct a shopping mall in their place. Your task is to find the largest solid area in which the mall can be constructed. There are a number of buildings in a certain two-dimensional landscape. Each building has a height, given by . If you join adjacent buildings, they will form a solid rectangle

View Solution →

Simple Text Editor

In this challenge, you must implement a simple text editor. Initially, your editor contains an empty string, S. You must perform Q operations of the following 4 types: 1. append(W) - Append W string to the end of S. 2 . delete( k ) - Delete the last k characters of S. 3 .print( k ) - Print the kth character of S. 4 . undo( ) - Undo the last (not previously undone) operation of type 1 or 2,

View Solution →

Poisonous Plants

There are a number of plants in a garden. Each of the plants has been treated with some amount of pesticide. After each day, if any plant has more pesticide than the plant on its left, being weaker than the left one, it dies. You are given the initial values of the pesticide in each of the plants. Determine the number of days after which no plant dies, i.e. the time after which there is no plan

View Solution →

AND xor OR

Given an array of distinct elements. Let and be the smallest and the next smallest element in the interval where . . where , are the bitwise operators , and respectively. Your task is to find the maximum possible value of . Input Format First line contains integer N. Second line contains N integers, representing elements of the array A[] . Output Format Print the value

View Solution →

Waiter

You are a waiter at a party. There is a pile of numbered plates. Create an empty answers array. At each iteration, i, remove each plate from the top of the stack in order. Determine if the number on the plate is evenly divisible ith the prime number. If it is, stack it in pile Bi. Otherwise, stack it in stack Ai. Store the values Bi in from top to bottom in answers. In the next iteration, do the

View Solution →