Skip to content

Commit

Permalink
Added codes for 5 May
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanmay-312 committed May 5, 2024
1 parent 1057f80 commit bf7806f
Show file tree
Hide file tree
Showing 4 changed files with 162 additions and 0 deletions.
144 changes: 144 additions & 0 deletions GeeksForGeeks/May/05-5-24/GFG.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
//{ Driver Code Starts
//Initial Template for Java

import java.util.LinkedList;
import java.util.Queue;
import java.io.*;
import java.util.*;

class Node{
int data;
Node left;
Node right;
Node(int data){
this.data = data;
left=null;
right=null;
}
}

class GfG {

static Node buildTree(String str){

if(str.length()==0 || str.charAt(0)=='N'){
return null;
}

String ip[] = str.split(" ");
// Create the root of the tree
Node root = new Node(Integer.parseInt(ip[0]));
// Push the root to the queue

Queue<Node> queue = new LinkedList<>();

queue.add(root);
// Starting from the second element

int i = 1;
while(queue.size()>0 && i < ip.length) {

// Get and remove the front of the queue
Node currNode = queue.peek();
queue.remove();

// Get the current node's value from the string
String currVal = ip[i];

// If the left child is not null
if(!currVal.equals("N")) {

// Create the left child for the current node
currNode.left = new Node(Integer.parseInt(currVal));
// Push it to the queue
queue.add(currNode.left);
}

// For the right child
i++;
if(i >= ip.length)
break;

currVal = ip[i];

// If the right child is not null
if(!currVal.equals("N")) {

// Create the right child for the current node
currNode.right = new Node(Integer.parseInt(currVal));

// Push it to the queue
queue.add(currNode.right);
}
i++;
}

return root;
}

public static void main (String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

int t=Integer.parseInt(br.readLine());

while(t > 0){
String s = br.readLine();
Node root = buildTree(s);
Solution g = new Solution();

ArrayList <Integer> res = g.verticalSum(root);
for (Integer num : res) System.out.print (num + " ");
System.out.println();
t--;

}
}

}


// } Driver Code Ends


/*Complete the function below
Node is as follows:
class Node{
int data;
Node left, right;
Node(int item)
{
data = item;
left = right = null
}
}
*/
class Solution
{
public ArrayList <Integer> verticalSum(Node root)
{
// add your code here
TreeMap<Integer,Integer> map = new TreeMap<>();

helper(root,map,0);

ArrayList<Integer> ans = new ArrayList<>();

for(int i: map.keySet())
ans.add(map.get(i));

Collections.reverse(ans);

return ans;
}

private void helper(Node root, TreeMap<Integer,Integer>map, int cur)
{
if(root == null)
return;

map.put(cur, map.getOrDefault(cur,0) + root.data);

helper(root.left, map,cur+1);
helper(root.right, map,cur-1);
}
}
2 changes: 2 additions & 0 deletions GeeksForGeeks/May/05-5-24/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Time complexity - O(n * logn)
Space complexity - O(n)
2 changes: 2 additions & 0 deletions LeetCode/May/05-5-24/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Time complexity - O(1)
Space complexity - O(1)
14 changes: 14 additions & 0 deletions LeetCode/May/05-5-24/Solution.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public void deleteNode(ListNode node) {
node.val = node.next.val;
node.next = node.next.next;
}
}

0 comments on commit bf7806f

Please sign in to comment.