Search:

Type: Posts; User: helloworld922

Search: Search took 0.10 seconds.

  1. Replies
    5
    Views
    2,591

    Re: Help with ListIterator

    Undo-redo seems more at-home to me implemented as a stack. Simply initialize two stacks, one for undo and one for redo, then every time the user does something, push it onto the undo stack. If the...
  2. Replies
    5
    Views
    2,591

    Re: Help with ListIterator

    listIterator in Linked Lists

    You can't modify a linked list with and without an iterator at the same time. Once you modify a linked list, you need a new iterator (this of course doesn't count...
Results 1 to 2 of 2