-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIntegerList.f90
214 lines (191 loc) · 5.1 KB
/
IntegerList.f90
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
module IntegerListModule
!------------------------------------------------------------------------------
! Lagrangian Particle / Panel Method - Spherical Model
!------------------------------------------------------------------------------
!
!> @author
!> Peter Bosler, Department of Mathematics, University of Michigan
!
!> @defgroup IntegerList IntegerList
!> A basic linked-list data structures for integers
!
!
! DESCRIPTION:
!> @file
!> A basic linked-list data structures for integers
!
!------------------------------------------------------------------------------
use NumberKindsModule
implicit none
private
public IntegerListNode
public New, Delete
public AddIntegerToList, ReturnIntegerArrayFromList
public ConcatenateLists
public PrintList
public AddUniqueIntegerToList
!
!----------------
! Types and module constants
!----------------
!
type IntegerListNode
integer(kint) :: value
integer(kint) :: listSize
type(IntegerListNode), pointer :: Next
end type
!
!----------------
! Interfaces
!----------------
!
interface New
module procedure NewPrivate
end interface
interface Delete
module procedure DeletePrivate
end interface
contains
!
!----------------
! Standard methods : Constructor / Destructor
!----------------
!
subroutine NewPrivate(listRoot,number)
! allocates a new listRoot.
type(IntegerListNode), pointer, intent(out) :: listRoot
integer(kint), intent(in), optional :: number
allocate(listRoot)
if ( present(number) ) then
listRoot%value = number
listRoot%listSize = 1_kint
else
listRoot%listSize = 0_kint
endif
nullify(listRoot%next)
end subroutine
recursive subroutine DeletePrivate(listRoot)
! Deletes an entire list
type(IntegerListNode), pointer, intent(inout) :: listRoot
type(IntegerListNode), pointer :: next
next => listRoot%next
deallocate(listRoot)
if ( associated(next) ) then
call DeletePrivate(next)
endif
end subroutine
!
!----------------
! Public functions
!----------------
!
subroutine AddIntegerToList(listRoot,number)
! increases size of list by 1, adds new integer to the end of current list.
type(IntegerListNode), pointer, intent(inout) :: listRoot
integer(kint), intent(in) :: number
type(IntegerListNode), pointer :: current, next
! check special case of empty list
if ( listRoot%listSize == 0 ) then
listRoot%value = number
listRoot%listSize = 1_kint
nullify(listRoot%next)
else
listRoot%listSize = listRoot%listSize + 1
current => listRoot
next => listRoot%next
! Find end of list
do while ( associated(next))
current => current%next
next => current%next
enddo
! allocate a new node
allocate(next)
! connect new node to end of list
current%next => next
next%value = number
nullify(next%next)
endif
end subroutine
subroutine AddUniqueIntegerToList(listRoot,number)
type(IntegerListNode), pointer, intent(inout) :: listRoot
integer(kint), intent(in) :: number
type(IntegerListNode), pointer :: current, next
! check special case of empty list
if ( listRoot%listSize == 0 ) then
listRoot%value = number
listRoot%listSize = 1_kint
nullify(listRoot%next)
else
! check root node value
current => listRoot
next => listRoot%next
if ( current%value == number ) return
! check current node
do while ( associated(next) )
current => current%next
next => current%next
if ( current%value == number ) return
enddo
! no equal values found; add number to end of list
allocate(next)
current%next => next
next%value = number
nullify(next%next)
endif
end subroutine
subroutine ConcatenateLists(list1,list2)
! Joins list 2 to the end of list1.
type(IntegerListNode), pointer, intent(inout) :: list1
type(IntegerListNode), pointer, intent(in) :: list2
type(IntegerListNode), pointer :: current2
! special case where list 2 is empty
if ( list2%listSize == 0 ) then
write(6,'(A)') 'ERROR : cannot concatenate empty lists.'
return
endif
current2=>list2
do while (associated(current2))
call AddIntegerToList(list1,current2%value)
current2=>current2%next
enddo
end subroutine
subroutine ReturnIntegerArrayFromList(intArray,listRoot)
! Converts linked list data structure into an integer array.
! Integer array must be preallocated and correctly sized external to this program.
integer(kint), intent(out) :: intArray(:)
type(IntegerListNode), pointer, intent(in) :: listRoot
type(IntegerListNode), pointer :: current
integer(kint) :: j
if ( size(intArray) /= listRoot%listSize ) then
print *, "ReturnIntegerArrayFromList ERROR : size mismatch."
return
endif
current => listRoot
j = 1
do while (associated(current))
intArray(j) = current%value
current=>current%next
j = j+1
enddo
end subroutine
subroutine PrintList(listRoot)
! Prints list data to standard out.
type(IntegerListNode), pointer, intent(in) :: listRoot
type(IntegerListNode), pointer :: current
integer(kint) :: j
current => listRoot
j = 1
write(6,'(A,I8)') 'ListSize = ',listRoot%listSize
write(6,'(2A12)') 'List Entry','Value'
do while ( associated(current) )
write(6,'(2I12)') j, current%value
current=>current%next
j = j+1
enddo
end subroutine
!
!----------------
! Module methods : type-specific functions
!----------------
!
end module