which types of data structure will i use to convert infix to
post fix???

Answers were Sorted based on User's Feedback



which types of data structure will i use to convert infix to post fix???..

Answer / abhishek munde

To convert the infix to postfix, STACK datastructure is
used. some may think about tree but by we only denote the
expression actual conversion is done through STACK.

Is This Answer Correct ?    12 Yes 2 No

which types of data structure will i use to convert infix to post fix???..

Answer / prashant

stack is really used to convert infix to postfix

Is This Answer Correct ?    5 Yes 0 No

which types of data structure will i use to convert infix to post fix???..

Answer / vikram

stack is used

Is This Answer Correct ?    5 Yes 0 No

which types of data structure will i use to convert infix to post fix???..

Answer / karthikeyan

stack is used . since it preserves data .

Is This Answer Correct ?    3 Yes 0 No

which types of data structure will i use to convert infix to post fix???..

Answer / khaja

stack only bcoz in memory the operations are done in stacks only

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

Why array is used in c?

0 Answers  


Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

0 Answers  


What are the storage classes in C?

0 Answers  


is forign key will be unique key any table or not?

2 Answers  


Do you have any idea about the use of "auto" keyword?

0 Answers  






program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5

8 Answers   Aptech, Infosys,


What is call by value in c?

0 Answers  


What are the uses of a pointer?

0 Answers  


What is function in c with example?

0 Answers  


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

0 Answers  


I have seen function declarations that look like this

0 Answers  


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


Categories