In which data structure, elements can be added or removed at
either end, but not in the middle?

Answers were Sorted based on User's Feedback



In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / megha jain

Link list is not the right ans as insertion and deletion
can also b in the middle..... ans is Deck(Double Ended
Queue)

Is This Answer Correct ?    23 Yes 2 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / sumit

dequeue is the correct answer.unlike queues elements can be
added at both ends rather than one end ,but not in the middle..

Is This Answer Correct ?    22 Yes 4 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / ujjwal dave

Stack and Queue are also not correct because in stack
elements can be added and deleted only from one end.
In queue addition takes place at one end and deletion from
other.....
we want to add elements at both ends.....so deques is the
only correct answer

Is This Answer Correct ?    17 Yes 3 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / poornakala

linked list is not right. its two way stack. double ended
queue can also cannot be as u need to have 4 pointers for
them... but two way stack needs 2 pointers and can only be
deleted and inserted at the end.

Is This Answer Correct ?    17 Yes 8 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / bhasu

dequeues is the correct

Is This Answer Correct ?    10 Yes 4 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / ractim chakraborty

deque

Is This Answer Correct ?    7 Yes 2 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / vaishali naidu

Double ended queue is the right answer but stack and queue
are also right answers as they allow LIFO and FIFO
principles not deletion or inserting from middle. IF its a
priority queue then we can insert the elements in between.

Is This Answer Correct ?    7 Yes 3 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / sandeep

i think link list is wrong answer and deque is the correct ans
thanks

Is This Answer Correct ?    4 Yes 1 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / loveleen kaur

a deque is a linear list in which elements can be added or
removed at either end but not in the middle..it is the
contraction of name double ended queue..

Is This Answer Correct ?    3 Yes 1 No

In which data structure, elements can be added or removed at either end, but not in the middle?..

Answer / gopesh

IT is stack...because we can push or pop at one end.......it can be done using array where one side is fixed or using linked list where either head is kept constant or null node.....

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Data Structures Interview Questions

What is a list in data structure?

0 Answers  


Define probing?

0 Answers  


What are priority queues?

0 Answers  


Will it create any problem if we add elements with key as user defined object into the treemap?

0 Answers  


Is array faster than arraylist?

0 Answers  






what is AVL tree?

5 Answers   ADS, TCS,


Can you use Bubble Sort To sort the number of elements.

0 Answers   iNautix,


Write the stack overflow condition.

0 Answers  


How do signed and unsigned numbers affect memory?

0 Answers  


What is linked list ?

0 Answers  


Explain what is B-tree?

0 Answers   BPL,


What is the default value of Array?

0 Answers  


Categories