
What and where are the stack and heap? - Stack Overflow
Sep 17, 2008 · What makes one faster? The stack is faster because the access pattern makes it trivial to allocate and deallocate memory from it (a pointer/integer is simply incremented or decremented), …
data structures - Stack and Queue, Why? - Stack Overflow
Jan 15, 2010 · A computer stack is like that, except it holds numbers, and you can make one out of an array or a list, if you like. (If the stack of plates has a spring underneath, they say you "push" one …
What do Push and Pop mean for Stacks? - Stack Overflow
n,r,o,c,p,o,p conversion of infix/postfix/prefix is a pathological example in computer science when teaching stacks: Infix to Postfix conversion. Post fix conversion to an infix expression is pretty …
Explain the concept of a stack frame in a nutshell
Apr 7, 2012 · A stack frame is a frame of data that gets pushed onto the stack. In the case of a call stack, a stack frame would represent a function call and its argument data. If I remember correctly, …
language agnostic - What is a lambda (function)? - Stack Overflow
Aug 19, 2008 · For a person without a comp-sci background, what is a lambda in the world of Computer Science?
computer science - What are practical applications of Queues? - Stack ...
Mar 6, 2010 · What are practical applications of Queues in Computer Science. Where do we use them and why? I heard that we use them in Video Games and Computer Simulation programs, is that …
What books should I read to have an undergraduate education in …
Jul 25, 2013 · And it goes without saying that you cannot really do computer science by just reading books. To really understand each topic, you have to do projects in it. I would also suggest looking at …
computer science - What exactly is the halting problem? - Stack Overflow
Whenever people ask about the halting problem as it pertains to programming, people respond with "If you just add one loop, you've got the halting program and therefore you can't automate task" Ma...
Newest 'computer-science' Questions - Stack Overflow
Feb 7, 2026 · Computer science (also called computing science, and often abbreviated CS) is the study of the theoretical foundations of information and computation and of practical techniques for their …
computer science - What is the role of stack in a microprocessor ...
Jul 11, 2009 · For instance, a7 is the stack pointer in a 68000, so you can certainly say the stack plays a role in the microprocessor without the stack memory physically residing in the microprocessor. Stack …