Write a program to convert the expression “a+b” into “+ab”.
Home/Computer Science/Data Structure/Page 16
SIKSHAPATH Latest Questions
practice503
Asked: October 20, 2021In: Data Structure
Draw the queue structure in each case when the following operations are performed on an empty queue. (a) Add A, B, C, D, E, F (b) Delete two letters (c) Add G (d) Add H (e) Delete four letters (f) Add I
Berlin
Asked: October 19, 2021In: Data Structure
Reverse the order of elements on stack S a. using two additional stacks b. using one additional queue c. using one additional stack and some additional non-array variables
abc
Asked: October 18, 2021In: Data Structure
Write a function to convert an infix expression to a postfix expression. Pass a one-dimensional character array P to the function as input (infix exp) and return character array Q (postfix exp). Test your program for following input P : ( ...
Write a program which finds the solution of Josephus problem using a circular linked list