-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bf7b27
commit 59b327d
Showing
4 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
//{ Driver Code Starts | ||
import java.io.*; | ||
import java.util.*; | ||
import java.util.LinkedList; | ||
import java.util.Queue; | ||
|
||
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; | ||
} | ||
|
||
static void deletetree(Node root) { | ||
if (root == null) return; | ||
deletetree(root.left); | ||
deletetree(root.right); | ||
root.left = null; | ||
root.right = null; | ||
} | ||
|
||
static void printInorder(Node root) { | ||
if (root == null) return; | ||
|
||
printInorder(root.left); | ||
System.out.print(root.data + " "); | ||
|
||
printInorder(root.right); | ||
} | ||
|
||
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); | ||
|
||
Tree tr = new Tree(); | ||
ArrayList<Integer> A = tr.serialize(root); | ||
deletetree(root); | ||
root = null; | ||
|
||
Node getRoot = tr.deSerialize(A); | ||
printInorder(getRoot); | ||
System.out.println(); | ||
} | ||
} | ||
} | ||
// } Driver Code Ends | ||
|
||
|
||
/*Complete the given function | ||
Node is as follows: | ||
class Tree{ | ||
int data; | ||
Tree left,right; | ||
Tree(int d){ | ||
data=d; | ||
left=right=null; | ||
} | ||
}*/ | ||
|
||
class Tree { | ||
// Function to serialize a tree and return a list containing nodes of tree. | ||
ArrayList<Integer> A = new ArrayList<>(); | ||
|
||
public ArrayList<Integer> serialize(Node root) { | ||
// Clear the list before serializing | ||
A.clear(); | ||
serializeHelper(root); | ||
return A; | ||
} | ||
|
||
private void serializeHelper(Node root) { | ||
if (root == null) { | ||
A.add(-1); | ||
return; | ||
} | ||
A.add(root.data); | ||
serializeHelper(root.left); | ||
serializeHelper(root.right); | ||
} | ||
|
||
// Function to deserialize a list and construct the tree. | ||
public Node deSerialize(ArrayList<Integer> A) { | ||
// code here | ||
if(A.size()==0) | ||
return null; | ||
|
||
int a=A.remove(0); | ||
if(a==-1) | ||
return null; | ||
|
||
Node root=new Node(a); | ||
root.left=deSerialize(A); | ||
root.right=deSerialize(A); | ||
return root; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Time complexity - O(n) | ||
Space complexity - O(n) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Time complexity - O(n) | ||
Space complexity - O(n) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
class Solution | ||
{ | ||
public int findMaxK(int[] nums) | ||
{ | ||
int ans = -1; | ||
Set<Integer> seen = new HashSet<>(); | ||
|
||
for (int num : nums) | ||
{ | ||
if (seen.contains(-num)) | ||
ans = Math.max(ans, Math.abs(num)); | ||
else | ||
seen.add(num); | ||
} | ||
|
||
return ans; | ||
} | ||
} |