A stack is a last in, first out (LIFO) abstract data type and data structure.
What is the time complexity of the put(x) and get() functions for a Stack abstract data type that is …
pointers data-structures stack time-complexity abstract-data-typeI'm supporting some c code on Solaris, and I've seen something weird at least I think it is: char new_…
c memory-management garbage-collection stack freeI've created a stack calculator for my Java class to solve equations such as 2 + ( 2 * ( 10 – 4 ) / ( ( 4 * 2 / ( 3 + 4) ) + 2 ) – 9 ) 2 + { 2 * ( 10 – 4 ) / [ { 4 * 2 / ( 3 + 4) } + 2 ] – 9 } We are suppose to implement { } [ ] into …
java stack calculator postfix-notationI've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone …
stack language-design stacklessToday I was trying to push in java.util.Stack class and then use the Iterator to iterate (without using …
java algorithm data-structures stackCan anyone please explain algorithm to generate the permutations possible when using only a single stack and push and pop …
algorithm stack permutation catalanCan this postfix expression can be evaluated? 6 2 3 + - 3 8 2 / + * 2 5 3 +
algorithm stack postfix-notation rpnIn a complex program, I am encountering a stack smashing error, pasted below. I'm having trouble to find out where …
c debugging gdb stack watchpoint