Computer Science, asked by amangaur762, 1 year ago

Write an algorithm to insert an element into circular queue.

Answers

Answered by amritanshu6
0
1) Create an empty stack S. 2) Initialize current node as root 3) Push the current node to S and set current = current->left until current is NULL 4) If current is NULL and stack is not empty then a) Pop the top item from stack. b) Print the popped item, set current = popped_item->right c) Go to step 3. 5) If current is NULL and stack is empty then we are done.
Similar questions