Data Structure - Interview Questions and Answers for 'Data Structure' - 72 question(s) found - Order By Newest Frequently asked. Q1. If you are given a choice to use either ArrayList and LinkedList, Which one would you use and Why ? Core Java Admin info@buggybread.com
Ans. ArrayList are implemented in memory as arrays and hence allows fast retrieval through indices but are costly if new elements are to be inserted in between other elements. LinkedList allows for constant-time insertions or removals using iterators, but only sequential access of elements
1. Retrieval - If Elements are to be retrieved sequentially only, Linked List is preferred.
2. Insertion - If new Elements are to be inserted in between other elements , Linked List is preferred.
3. Search - Binary Search and other optimized way of searching is not possible on Linked List.
4. Sorting - Initial sorting could be pain but lateral addition of elements in a sorted list is good with linked list.
5. Adding Elements - If sufficiently large elements needs to be added very frequently ,Linked List is preferable as elements don't need consecutive memory location. Sample Code for ArrayList Sample Code for LinkedList Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  java   collections   list   arraylist   linkedlist   difference between   architecture   data structure   ebay Asked in 2 Companies basic   frequent Try 2 Question(s) TestVery frequently asked. Favorite question in Walk in Drive of many Indian service companies. Q2. What is the difference between ArrayList and LinkedList ? Core Java admin info@buggybread.com
Ans. Underlying data structure for ArrayList is Array whereas LinkedList is the linked list and hence have following differences -
1. ArrayList needs continuous memory locations and hence need to be moved to a bigger space if new elements are to be added to a filled array which is not required for LinkedList.
2. Removal and Insertion at specific place in ArrayList requires moving all elements and hence leads to O(n) insertions and removal whereas its constant O(1) for LinkedList.
3. Random access using index in ArrayList is faster than LinkedList which requires traversing the complete list through references.
4. Though Linear Search takes Similar Time for both, Binary Search using LinkedList requires creating new Model called Binary Search Tree which is slower but offers constant time insertion and deletion.
5. For a set of integers you want to sort using quicksort, it's probably faster to use an array; for a set of large structures you want to sort using selection sort, a linked list will be faster. Sample Code for ArrayList Sample Code for LinkedList Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  collections   java   data structures   arraylist   linkedlist Asked in 61 Companies Basic   frequent Try 1 Question(s) TestAdvanced level question frequently asked in US based companies. Recently asked in EMC and Intuit. Q3. Can you provide some implementation of a Dictionary having large number of words ? Solution Admin info@buggybread.com
Ans. Simplest implementation we can have is a List wherein we can place ordered words and hence can perform Binary Search.
Other implementation with better search performance is to use HashMap with key as first character of the word and value as a LinkedList.
Further level up, we can have linked Hashmaps like ,
hashmap {
a ( key ) -> hashmap (key-aa , value (hashmap(key-aaa,value)
b ( key ) -> hashmap (key-ba , value (hashmap(key-baa,value)
....................................................................................
z( key ) -> hashmap (key-za , value (hashmap(key-zaa,value)
}
upto n levels ( where n is the average size of the word in dictionary. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  java   collections   hashmap   binary search   search algorithm   advanced   architecture   data structure Asked in 6 Companies   frequent Try 1 Question(s) Test Q4. In a Linked list with sorted numbers, insert a new numbers while maintaining the sort order. Algorithm 2017-07-25 14:59:01
Ans.
public class LinkedList {
Node start = null;
Node head = null;
class Node{
Integer body;
Node nextNode;
Node(Integer value){
body = value;
}
}
private void insertInMiddle(Integer value){
head = start;
if(start == null) {
start = new Node(value);
head = start;
head.nextNode = null;
return;
}
while(head.body < value){
if(head.nextNode == null || head.nextNode.body >= value){
Node newNode = new Node(value);
newNode.nextNode = head.nextNode;
head.nextNode = newNode;
break;
}
head = head.nextNode;
}
}
private void traverse(){
head = start;
while(head != null){
System.out.println(head.body);
head = head.nextNode;
}
}
public static void main(String[] args){
LinkedList ll = new LinkedList();
ll.insertInMiddle(5);
ll.insertInMiddle(10);
ll.insertInMiddle(15);
ll.insertInMiddle(7);
ll.traverse();
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  LinkedList  Data structures  Algorithm Q5. Find the third last element in a linked list ? Data Structure 2017-03-27 08:53:16
Ans. First Find the number of nodes in the linked list and take it as n.then find the data at n-3 element. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  linkedlist Asked in 1 Companies Q6. Write a program for LinkedList, with method to append node and traversing the list ? Algorithm 2017-07-25 14:31:33
Ans. public class LinkedList {
Node start = null;
Node head = null;
class Node {
Integer body;
Node nextNode;
Node(Integer value) {
body = value;
}
}
private void addNodeToEnd(Integer value) {
if (start == null) {
start = new Node(value);
head = start;
head.nextNode = null;
return;
}
while (head.nextNode != null) {
head = head.nextNode;
}
head.nextNode = new Node(value);
}
private void traverse() {
head = start;
while (head != null) {
System.out.println(head.body);
head = head.nextNode;
}
}
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.addNodeToEnd(5);
ll.addNodeToEnd(10);
ll.addNodeToEnd(15);
ll.traverse();
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  LinkedList  Data structures  Algorithm Q7. Write method to delete Node from a LinkedList. Data Structure 2017-07-25 15:09:59
Ans. public class LinkedList {
Node start = null;
Node head = null;
class Node {
Integer body;
Node nextNode;
Node(Integer value) {
body = value;
}
}
private void addNodeToEnd(Integer value) {
if (start == null) {
start = new Node(value);
head = start;
head.nextNode = null;
return;
}
while (head.nextNode != null) {
head = head.nextNode;
}
head.nextNode = new Node(value);
}
private void deleteNode(Integer value) {
head = start;
while (head.nextNode != null) {
if(head.nextNode.body == value){
head.nextNode = head.nextNode.nextNode;
}
head = head.nextNode;
}
}
private void traverse() {
head = start;
while (head != null) {
System.out.println(head.body);
head = head.nextNode;
}
}
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.addNodeToEnd(5);
ll.addNodeToEnd(10);
ll.addNodeToEnd(15);
ll.traverse();
ll.deleteNode(10);
ll.traverse();
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  linkedlist  delete node from linkedlist Q8. What is the difference between Data Type and Data Structure ? Core Java Admin info@buggybread.com
Ans. Data type: a set of values together with operations on that type Data structure: a physical implementation of a data type Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  java   oops   data structure   data type Q9. Do you see Class as a Data Type or Data Structure ? Admin info@buggybread.com
Ans. Class can be better seen as Data Type. This could be implemented as a Data Structure too in some cases. One thing worth understanding here is that Data type and Data structure are conceptual things. Class could be implementation of either of these. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  java   oops   class   data type   data structure Q10. How to determine if the linked list has a cycle in it ? admin info@buggybread.com
Ans. http://stackoverflow.com/questions/494830/how-to-determine-if-a-linked-list-has-a-cycle-using-only-two-memory-locations Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  linked list   data structure   algorithm   java   ebayAns. BlockingQueue is a Queue that supports operations that wait for the queue to become non-empty when retrieving and removing an element, and wait for space to become available in the queue when adding an element. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  blockingqueue   collections   java   concurrent collections Asked in 10 Companies Q12. Which Data Structure should be used for Load Balancer ?
Ans. [ Open Ended question ] Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  data structures   open ended questions   load balancer Q13. Explain what happens when insertion is performed in case of ArrayList and LinkedList. Data Structure 2017-10-26 15:52:53
Ans. Array List works on Array and when we add an element in middle of the list, Array List need to update the index of all subsequent elements. I the capacity is full, it even may need to move the whole list to a new memory location . Linked List works on Double linked list algorithm and all it has to do is to adjust the address of the previous and next elements. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  arraylist vs linkedlist  collections  list Asked in 2 Companies Q14. Write a Program to reverse a Linked List ? Data Structure 2016-12-13 14:58:09
This question was recently asked at 'Myntra,Compro Technologies'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 2 Companies Q15. What is the difference between circular queue and priority queue ? Data Structures 2017-01-28 14:43:39
Ans. https://qr.ae/TWK2Ok Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  circular queue  priority queue  queue  data structures  collections Q16. Write program to create a linked list and perform different operations on it. Algorithm 2017-02-24 14:18:01
This question was recently asked at 'Kony Labs,Compro Technologies'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Linkedlist  data structures  algorithm Asked in 2 Companies basic Q17. Write a Program to delete a node from Linked List ? Data Structure 2017-05-25 08:22:58
This question was recently asked at 'Caprus IT'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  linkedlist  delete a node from linked list Asked in 1 Companies Q18. What data structure will you use if we have to search an element in million of elements ? Data Structure 2017-03-03 14:38:28
This question was recently asked at 'Microsoft'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q19. Write a Program to find the middle element of Linked List ? Data Structure 2017-03-27 08:39:28
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  data structure  linked list Q20. Write a Program to merge two sorted arrays ? Data Structure 2017-03-27 08:46:57
Ans. We can merge two sorted array by using quick sort algorithm Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  arrays  merge sorted arrays Asked in 2 Companies Q21. Implement stack using generics in Java. Data Structure 2017-04-18 09:23:44
This question was recently asked at 'Bind Software Innovations'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  oding  cod Asked in 1 Companies This question was recently asked at 'MarkMonitor'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  hashtable Asked in 1 Companies Q23. What is the difference between Stack and Queue ? Data Structures 2017-06-18 18:10:36
Ans. Stack is based on Last in First out (LIFO) principle while a queue is based on FIFO (First In First Out) principle. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  data structure  stack vs queue  stack  queue Basic Ans. Graph contain cycles whereas Trees cannot. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  graph  trees  data structures  tree vs graph Q25. Write a Program to implement stack using LinkedList. Data Structure 2018-05-24 08:25:40
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Data Structure Q26. Describe how you could use a single array to implement three stacks Algorithm 2018-05-24 08:28:08
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Data Structure Q27. Write a program to sort a stack in ascending order You should not make any assumptions about how the stack is implemented The following are the only functions that should be used to write this program: push | pop | peek | isEmpty Algorithm 2018-05-24 08:33:37
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Data Structures Q28. What is the difference between pop and peek function of stack ? Data Structure 2018-05-24 08:34:36
Ans. pop method pulls the top element from the stack and then move the top to the next element whereas peek only get the top element but doesn't move the top. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  stack Q29. In a Tree, find common ancestor of two nodes. Data Structures 2017-08-24 21:45:59
This question was recently asked at 'Amazon'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Tree  Data structures Asked in 1 Companies Q30. Which Data structure can be used for creating Queue ? Data Structure 2017-08-28 17:06:49
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  queue  collections  data structure Q31. Which of the two - Arrays or LinkedList - is a better data structure for implementing Queue ? and Why ? Data Structure 2017-08-28 19:34:12
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Arraylist  linkedlist  queue  collections Q32. Write a program for binary tree ? Data Structure 2017-09-15 08:00:14
Ans. public class BinarySearchTree {
//Represent the node of binary tree
public static class Node {
int data;
Node left;
Node right;
public Node(int data) {
//Assign data to the new node, set left and right children to null
this.data = data;
this.left = null;
this.right = null;
}
}
//Represent the root of binary tree
public Node root;
public BinarySearchTree() {
root = null;
}
//factorial() will calculate the factorial of given number
public int factorial(int num) {
int fact = 1;
if (num == 0) return 1;
else {
while (num > 1) {
fact = fact * num;
num--;
}
return fact;
}
}
//numOfBST() will calculate the total number of possible BST by calculating Catalan Number for given key
public int numOfBST(int key) {
int catalanNumber = factorial(2 * key) / (factorial(key 1) * factorial(key));
return catalanNumber;
}
public static void main(String[] args) {
BinarySearchTree bt = new BinarySearchTree();
//Display total number of possible binary search tree with key 5
System.out.println("Total number of possible Binary Search Trees with given key: "
bt.numOfBST(5));
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q33. Write an efficient program for printing k largest elements in an array. Elements in array can be in any order. Data Structure 2017-10-21 08:25:55
This question was recently asked at 'Amazon'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  arrays  coding  code Asked in 1 Companies Q34. What are the ways to get the values from list ? Data Structure 2018-01-04 09:42:21
Ans. list.get(index); Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  list Asked in 1 Companies Q35. Find Max from Stack in O(1) complexity Algorithm 2018-01-21 17:13:23
This question was recently asked at 'EPAM'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  complexity  stack  data structure Asked in 1 Companies Q36. How would you implement low latency data structures ? Data Structure 2018-02-10 12:05:39
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q37. Create a stack of specific size using arrayList? Data Structure 2018-04-04 21:33:45
Ans. public class StackUsingArrayList {
public static void main(String[] args) {
List list = new ArrayList();
list.add("A");
list.add("B");
list.add("C");
Stack stack = new Stack();
list.forEach(a -> stack.add(a));
System.out.println(stack);
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies This question was recently asked at 'Collabera'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  hash codes  hashcode Asked in 1 Companies Q39. Difference between Arrays and LinkedList ? Data Structure 2018-04-26 18:57:20
This question was recently asked at 'Spillman Technologies,Motorola Solutions'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 2 Companies Q40. Which of the following - arrays or LinkedList allow elements to be accessed using index and how ? Data Structure 2018-04-29 09:03:26
Ans. Arrays allows elements to be accessed directly using the index.
As Array elements are stored in continuous memory locations it's very easy to find the memory address of any element using the formula as following
Memory Address of Array start or index 0 + ( Size of array element * Index ) Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  arrays  linkedlist