-
Notifications
You must be signed in to change notification settings - Fork 8
/
MultiSet.pde
87 lines (71 loc) · 2.43 KB
/
MultiSet.pde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright (C) 2013, Tasos Varoudis
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// 9th Space Syntax Symposium - Software Workshop
// Simple axial line analyser. Introduction to concepts like 'integration', 'total depth', 'node count', 'connectivity'....
// Not all classes are finished but it runs fine! Some missing protectors too (overflow.. etc)
//
// Books and references:
// Hillier, Bill and Hanson, Julienne. The social logic of space.
// Robert Sedgewick, Kevin Wayne, Algorithms (4th Edition).
// Teklenburg (1993) Space syntax standardised integration measures and some simulations.
// Processing Books: http://processing.org/books/
// depthmapX source code: https://github.com/varoudis/depthmapX
//
import java.util.Iterator;
import java.util.NoSuchElementException;
class Bag<Item> implements Iterable<Item> {
int N; // number of elements in bag
Node<Item> first; // beginning of bag
class Node<Item> {
private Item item;
private Node<Item> next;
}
Bag() {
first = null;
N = 0;
}
boolean isEmpty() {
return first == null;
}
int size() {
return N;
}
void add(Item item) {
Node<Item> oldfirst = first;
first = new Node<Item>();
first.item = item;
first.next = oldfirst;
N++;
}
Iterator<Item> iterator() {
return new ListIterator<Item>(first);
}
// an iterator, doesn't implement remove() since it's optional
class ListIterator<Item> implements Iterator<Item> {
Node<Item> current;
ListIterator(Node<Item> first) {
current = first;
}
boolean hasNext() {
return current != null;
}
void remove() {
throw new UnsupportedOperationException();
}
Item next() {
if (!hasNext()) throw new NoSuchElementException();
Item item = current.item;
current = current.next;
return item;
}
}
}