Short Answers Sections 7.1 - 7.2 Stacks and Their Applications |
bool balanced(const char p[ ], size_t n) // Precondition: p[0]...p[n-1] contains n characters, each of which // is '(', ')', '{' or '}'. // Postcondition: The function returns true if the characters form a // sequence of correctly balanced parentheses with each '(' matching // a ')' and each '{' matching a '}'. Note that a sequence such as // ( { ) } is NOT balanced because when we draw lines to match the // parentheses to their partners, the lines cross each other. On the // other hand, ( { } ) amd { ( ) } are both balanced.
Short Answers
Section 7.3
Implementations of
the stack ADT
stack< int> s; s.push(1); s.push(2); s.push(3); s.pop( );
_______ __________________________________ used| | data| | | | | | |_______| |______|______|______|______|______| [0] [1] [2] [3] [4]
stack< int> s; s.push(1); s.push(2); s.push(3); cout << s.pop( );
_______ head_ptr| | |_______|
Short Answers
Section 7.4
More Complex
Stack Applications
int evaluate_postfix_from_cin( ) // Precondition (Which is not checked): The next input line of cin is a // properly formed postfix expression consisting of integers, // the binary operations + and -, and spaces. // Postcondition: The function has read the next input line (including // the newline) and returned the value of the postfix expression. { int i; stack< int> s;
| | | + | | ( | bottom |___*___|
Multiple Choice Sections 7.1-7.2 Stacks and Their Applications |
declare a stack of characters while ( there are more characters in the word to read ) { read a character push the character on the stack } while ( the stack is not empty ) { write the stack's top character to the screen pop a character off the stack }
declare a character stack while ( more input is available) { read a character if ( the character is a '(' ) push it on the stack else if ( the character is a ')' and the stack is not empty ) pop a character off the stack else print "unbalanced" and exit } print "balanced"
((())
())(()
(()()))
(()))()
(()(())(()))
Multiple Choice
Section 7.3
Implementations of
the stack ADT
Multiple Choice
Section 7.4
More Complex
Stack Applications
Data Structures and Other Objects Using C++
Thank you for visiting
http://www.cs.colorado.edu/~main/questions/chap07q.html
Copyright © 2000
Addison-Wesley Computer and Engineering Publishing Group