| |
- __builtin__.object
-
- llist.dllist
- llist.dllistiterator
- llist.dllistnode
- llist.sllist
- llist.sllistiterator
- llist.sllistnode
class dllistiterator(__builtin__.object) |
|
Doubly linked list iterator |
|
Methods defined here:
- next(...)
- x.next() -> the next value, or raise StopIteration
Data and other attributes defined here:
- __new__ = <built-in method __new__ of type object>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
|
class sllistiterator(__builtin__.object) |
|
Singly linked list iterator |
|
Methods defined here:
- next(...)
- x.next() -> the next value, or raise StopIteration
Data and other attributes defined here:
- __new__ = <built-in method __new__ of type object>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
|
|