Data structure Questions bank in python
Data structure Question bank in python
- What is data structure?
- Why should we use data structure?
- What is difference array and list?
- What are the fundamental of data structure?
- Explain list.
- Advantage of list.
- Why we are using lists in data structure?
- What is linked list?
- Why to use linked list?
- Where we can use linked list?
- Explain linked list with diagram.
- How to traverse the linked list in python?
- How to append the elements to the linked list in python?
- How to insert the elements into the linked list in python?
- How to remove the elements from the linked list in python?
- How to replace the elements in the linked list in python?
- How to search the element location in the linked list in python?
- How to find the size of linked list?
- Write a python program to create a linked list and perform operations on the list.
- What is stack?
- What is peep operation ?
- Write a python program to perform push,pop,peep,search operations on stack using stack class and also write code to check that stack is empty or not.
- Explain Queue with some real-time example.
- Write a python program to perform add,delete and search operations on queue using queue class and also write code to check that queue is empty or not.
- What is Deques?
- Write a python program to add element at the front,deleting element at the front,add element at the rear,deleting element at the rear,deleting element at any place,searching for an element and reversing in the deque.
Comments
Post a Comment