Stack: Difference between revisions

From Computer Science Wiki
 
(2 intermediate revisions by the same user not shown)
Line 32: Line 32:
     return
     return


def pop(element):
def pop():


     # do stuff here
     # do stuff here
Line 38: Line 38:
     return
     return


def isEmpty(stackName):
def isEmpty():


     # this function should return as boolean True or False
     # this function should return as boolean True or False
Line 63: Line 63:


* [[Abstract data structures]]
* [[Abstract data structures]]
== External Links ==


== References ==
== References ==

Latest revision as of 08:17, 7 April 2022

Programming basics[1]

In computer science, a stack is an abstract data type that serves as a collection of elements, with two principal operations: push, which adds an element to the collection, and pop, which removes the most recently added element that was not yet removed. The order in which elements come off a stack gives rise to its alternative name, LIFO (for last in, first out). Additionally, a peek operation may give access to the top without modifying the stack.

The name "stack" for this type of structure comes from the analogy to a set of physical items stacked on top of each other, which makes it easy to take an item off the top of the stack, while getting to an item deeper in the stack may require taking off multiple other items first[2].

Lifo stack.png[3]


Access methods of stack[edit]

  • push
  • pop
  • isEmpty

practical applications of stack[edit]

We can see stack-like behavior with a redo-undo features at many places like editors, photoshop and forward and backward feature in web browsers

A python learning activity[edit]

Using the python list data structure, implement 3 stack functions, push, pop and isEmpty. We assume we know the name of the stack.

myStack = []

def push(element):

    # do stuff here

    return

def pop():

    # do stuff here

    return

def isEmpty():

    # this function should return as boolean True or False
    return

stack[edit]

This video discusses the C programming language, but the content is clear to describe stack.

Standards[edit]

  • Describe the characteristics and applications of a stack.
  • Construct algorithms using the access methods of a stack.

See Also[edit]

References[edit]