which types of data structure will i use to convert infix to
post fix???
Answers were Sorted based on User's Feedback
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 |
Answer / prashant
stack is really used to convert infix to postfix
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / khaja
stack only bcoz in memory the operations are done in stacks only
| Is This Answer Correct ? | 2 Yes | 1 No |
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
wat are the two methods for swapping two numbers without using temp variable??
WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
Explain how do you declare an array that will hold more than 64kb of data?
What is the use of the #include directive?
What is the process to generate random numbers in c programming language?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
what are the 10 different models of writing an addition program in C language?