hello friends, given an expression we have to remove the
unwanted brackets in that expression.
Eg : (a+b) ---> a+b
(a+b)*(c)-----> (a+b)*c. Please mail me if you know
the logic. My mail id is : saravana6m@gmail.com.
Thank you in advance :-)
Answer / arjun
hello there,
the logic i quite simple and such questions are give just to
confuse us.
push the given string in a stack and while popping out
ignore the bracket PAIR which contain
i) a lone variable in between
ii) does not contain any operator before or after the bracket.
for eg. if (a+b)*c is there then bracket must not be ignored.
thanks
Is This Answer Correct ? | 9 Yes | 14 No |
Write a simple encryption program using string function which apply the substitution method.
Display Pattern: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 …
output for printf("printf");
A Binary no. is given, we hav to find it's decimal equivalent.
How to Split Strings with Regex in Managed C++ Applications?
Code for Small C++ Class to Transform Any Static Control into a Hyperlink Control?
readers and writers problem
Given a table of the form: Product Sold on A 1/1/1980 B 1/1/1980 C 1/1/1980 A 1/1/1980 B 1/1/1980 C 2/1/1980 A 2/1/1980 There are 30 products and 10,000 records of such type. Also the month period during which sales happened is given to u. Write the program to display the result as: Product Month No. of copies A January 12 A February 15 A March 27 B January 54 B February 15 B March 10 C January 37
write a program to sort 'n' elemnts using bubble sort
what mean void creat_object?in public class in this code class A{ public: int x; A(){ cout << endl<< "Constructor A";} ~A(){ cout << endl<< "Destructor A, x is\t"<< x;} }; void create_object(); void main() { A a; a.x=10; { A c; c.x=20; } create_object(); } void create_object() { A b; b.x=30; }
write a program that reverses the input number of n.Formulate an equation to come up with the answer.
Show by induction that 2n > n2, for all n > 4.
2 Answers Karvy, Qatar University,