How is it possible to insert different type of elements in
stack?
Answer Posted / sudipto ghosh
yes it is possible to insert different types of element in a
stack.
insted of defining the member as int or float or so on. we
will define each element as a union which will be consisting
of all types of data type and only one can be used at a
time. in order to determine which type of element is being
pushed or poped we will define a flag with in union which
keeps the track of data type being used.
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
How do you reference all the elements in a one-dimension array?
What are the types of linked list?
Explain the sorting algorithm that is most suitable to be used with single linked list?
Why we use linked list?
Suppose in an integer array, there is 1 to 100 number, out of one is duplicate, how to find?
Explain Linked List
Can arraylist contain duplicates?
Which is better bubble sort or selection sort?
What are different dynamic memory allocation technique in c.
How many types of sorting algorithms are there?
an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
What package is arraylist?
where do you use double linked list?
Which language is best for data structures?
Can array store heterogeneous data?