`
leonzhx
  • 浏览: 810095 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Bags, Queues and Stacks

 
阅读更多

1. Stack: Examine the item most recently added. --> FILO
    Queue: Examine the item least recently added. --> FIFO

 

2. Linked list implementation of Stack :

 

public class LinkedStack<Item>
{
    private Node first = null;
    private class Node
    {
      Item item;
      Node next;
     }

    public boolean isEmpty()
    { return first == null; }

     public void push(Item item)
    {
      Node oldfirst = first;
      first = new Node();
      first.item = item;
      first.next = oldfirst;
    }

     public Item pop()
    {
      Item item = first.item;
      first = first.next;
      return item;
    }
 }

 

3. Array implementation of Stack :

  a) Underflow : throw exception if pop from an empty stack.

  b) Loitering : set the reference in array to null when the item is popped

  c) Overflow : If array is full, create a new array of twice the size, and copy items. ( ~3N)

  d) Shrink :  halve size of array when array is one-quarter full.

 

4. Linked List implementation of Queue:

public class LinkedQueue<Item>
{
  private Node first, last;
  
  private class Node
  { /* same as in Stack */ }

  public boolean isEmpty()
  { return first == null; }
  
  public void enqueue(Item item)
  {
    Node oldlast = last;
    last = new Node();
    last.item = item;
    last.next = null;
    if (isEmpty()) first = last;
    else oldlast.next = last;
  }

  public Item dequeue()
  {
    Item item = first.item;
    first = first.next;
    if (isEmpty()) last = null;
    return item;
  }
}

 

5.  Array implementation of a queue.
  a)  Use array q[] to store items in queue.
  b)  enqueue(): add new item at q[tail].
  c)  dequeue(): remove item from q[head].
  d)  Update head and tail modulo the capacity.
  e)  Add resizing array.

 

6. Bag : Adding items to a collection and iterating (when order doesn't matter).

 


 

7.  Stack Applications :

    a)  Parsing in a compiler.
    b)  Java virtual machine.
    c)  Undo in a word processor.
    d)  Back button in a Web browser.
    e)  PostScript language for printers.

    f)  Implementing function calls in a compiler.

 

8. How a compiler implements a function.
    a)  Function call: push local environment and return address.
    b)  Return: pop return address and local environment.

   Note. We can always use an explicit stack to remove recursion.

 

9. Dijkstra's two-stack algorithm computes the same value if the operator occurs after the two values. And all of the parentheses are redundant! We can use postfix or "reverse Polish" notation:

    1 2 3 + 4 5 * * +

 

 

 

 

  • 大小: 44.7 KB
分享到:
评论

相关推荐

    算法第四版(algorithms),2011年新出版,算法设计力作

    1.3 Bags, Queues, and Stacks 120 1.4 Analysis of Algorithms 172 1.5 Case Study: Union-Find 216 2 Sorting . . . . . . . . . . . . . . . . . . . . . . . 243 2.1 Elementary Sorts 244 2.2 Mergesort 270 ...

    AWP.Algorithms.Part.I II.4th.2014.2

    ### 1.3 Bags, Queues, and Stacks 这部分内容深入探讨了几种基本的数据结构: - **Bags (包)**:一种简单的数据结构,用于存储元素集合,但不关心元素的顺序。 - **Queues (队列)**:一种先进先出(FIFO)的数据...

    Java职业笔试题-Algorithms:算法

    stacks, queues, bags, insertion sort, selection sort, shellsort, quicksort, 3-way quicksort, mergesort, heapsort, binary heaps, binary search trees, red-black trees, separate chaining and linear ...

    C语言编译工具TC 3.0.rar

    FILES ON DISKS -------------- DISK 1 ------ INSTALL EXE - Install program UNZIP EXE - Decompress .ZIP files ...CLASSINC ZIP - ABSTARRY H - Header file for ... STACKS H - Header file for classlibs

    Algorithms

    - **容器数据结构**(1.3节):介绍了三种常见的容器数据结构——袋(Bags)、队列(Queues)和栈(Stacks),并探讨它们的特点及应用场景。 - **算法分析**(1.4节):这部分讲解如何评估算法的时间复杂度和空间复杂度,...

    gs-collection-study:'gs-collections'(goldmansachs java 集合框架)研究项目

    5. **Queues**:提供了先进先出(FIFO)的队列实现。 6. **Stacks**:实现了后进先出(LIFO)的堆栈操作。 7. **Multimaps**:允许一个键对应多个值的映射关系。 四、使用示例 ```java import ...

    绿色版PocketDOS 和 绿色版TC3.0

    BAGS H - Header file for classlibs BTREE H - Header file for classlibs CHECKS H - Header file for classlibs CLSDEFS H - Header file for classlibs CLSTYPES H - Header file for classlibs COLLECT H...

Global site tag (gtag.js) - Google Analytics