1 / 9

Data Structures

Data Structures. Lecture 9: Stacks Azhar Maqsood NUST Institute of Information Technology (NIIT). The Stack: Definition. A stack is an ordered collection of items into which new items may be inserted and from which items may be deleted at one end called the TOP of the stack.

cadee
Télécharger la présentation

Data Structures

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Data Structures Lecture 9: Stacks Azhar Maqsood NUST Institute of Information Technology (NIIT)

  2. The Stack: Definition • A stack is an ordered collection of items into which new items may be inserted and from which items may be deleted at one endcalled the TOP of the stack

  3. What is a Stack • A common data structure in computing. • Data items are "popped" and "pushed" (retrieved and stored) from the top of the stack. • Stacks normally have a maximum size. It is an error to push items onto a full stack, or pop items off an empty stack. • LIFO: Last In First Out

  4. Stack features • ORDERING: maintains order when elements added(new elements are added to the end by default) • DUPLICATES: yes (allowed) • OPERATIONS: • add element to end of list ('push') • remove element from end of list ('pop') • isEmpty() • isFull() • Top()

  5. Stacks in computer science • the stack is one of the most important data structures in all of computer science • compilers use stacks to evaluate expressions • stacks are great for reversing things, matching up related pairs of things, and backtracking algorithms • stack programming problems: • reverse letters in a string, reverse words in a line, or reverse a list of numbers • examine a file to see if its braces {} and other operators match • convert infix expressions to postfix or prefix

  6. Another implementation of Stack • Stacks can be declared by using structures containing two objects #define STACKSIZE 100 struct stack { int top; int items[STACKSIZE]; }; struct stack s;

  7. empty() If (s.top==-1) • Stack is empty Else stack is not empty int empty(struct stack *ps) { if (ps->top == -1) return(TRUE); else return(FALSE); } if (empty(&s)) stack is empty else stack is not empty

  8. Push() void push(struct stack *ps, int x) { ps->items[++(ps->top)] = x; } void push(struct stack *ps, int x) { if (ps->top==STACKSIZE-1) { cout<<“stack overflow”; exit(); } ps->items[++(ps->top)] = x; return; }

  9. POP( ) int pop(struct stack *ps) { if (empty(ps)) { cout<<stack underflow; exit(1); }return (ps->items[ps->top--]); } To use the pop function, the programmer can declare int x and write x=pop(&s);

More Related