Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know. |
|
|||
|
| ||||
| Algorithm - Interview Questions and Answers for 'Deloitte' - 4 question(s) found - Order By Newest | ||||
| ||||
| Ans. int duplicateArray[] = { 1, 2, 2, 3, 4, 5, 6, 8, 9} Set unique = new HashSet(); for (int i = 0; i < duplicateArray.length; i) { if (unique.contains(duplicateArray[i])) { System.out.println(duplicateArray[i]); } else { unique.add(duplicateArray[i]); } } Complexity O(n) = nHashSet contains and add has O(n) = 1 | ||||
| ||||
| Ans. Binary tree is a tree in which each node has up to two children.Tree is a data structure composed of nodes.Each tree has a root node(not necessary in graph theory). The root node has zero or more child nodes.Each child node has zero or more child nodes, and so on.The tree cannot contain cycles. | ||||
| ||||
| Ans. https://www.geeksforgeeks.org/arrays-sort-in-java-with-examples/ | ||||
| ||||
| Ans. https://www.geeksforgeeks.org/heap-sort/ | ||||