forked from varoudis/Simple_Axial_Line_Analyser
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Queue.pde
106 lines (87 loc) · 2.89 KB
/
Queue.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// 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 Queue<Item> implements Iterable<Item> {
private int N; // number of elements on queue
private Node<Item> first; // beginning of queue
private Node<Item> last; // end of queue
// helper linked list class
class Node<Item> {
private Item item;
private Node<Item> next;
}
Queue() {
first = null;
last = null;
N = 0;
}
boolean isEmpty() {
return first == null;
}
int size() {
return N;
}
Item peek() {
if (isEmpty()) throw new NoSuchElementException("Queue underflow");
return first.item;
}
void enqueue(Item item) {
Node<Item> oldlast = last;
last = new Node<Item>();
last.item = item;
last.next = null;
if (isEmpty()) first = last;
else oldlast.next = last;
N++;
}
Item dequeue() {
if (isEmpty()) throw new NoSuchElementException("Queue underflow");
Item item = first.item;
first = first.next;
N--;
if (isEmpty()) last = null; // to avoid loitering
return item;
}
Iterator<Item> iterator() {
return new ListIterator<Item>(first);
}
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;
}
}
}