A stack is a last in, first out (LIFO) abstract data type and data structure.
I always mix up whether I use a stack or a queue for DFS or BFS. Can someone please provide …
stack queue depth-first-search breadth-first-searchI want to know if there is a way to solve infix expressions in a single pass using 2 stacks? The …
infix-notation stackI'm using MinGW with GCC 3.4.5 (mingw-special vista r3). My C application uses a lot of stack so I was wondering …
c stack mingwWe recently attempted to break apart some of our Visual Studio projects into libraries, and everything seemed to compile and …
c++ visual-c++ x86 stack calling-conventionPossible Duplicate: What and where are the stack and heap? With regard to the basic concepts of memory layout in …
c memory-management stack heapAs far as I know each thread gets a distinct stack when the thread is created by the operating system. …
c windows linux multithreading stackIf I declare a data structure globally in a C++ application , does it consume stack memory or heap memory ? For …
c++ memory-management stackI've written software in the past that uses a stack to check for balanced equations, but now I'm asked to …
algorithm recursion stack