Skip to content
Snippets Groups Projects
Commit b3840eac authored by Jonas Riedel's avatar Jonas Riedel
Browse files

Update Queue.f95

parent 0a26d8b8
No related branches found
No related tags found
No related merge requests found
......@@ -44,62 +44,16 @@ program QueueProgram
contains
subroutine enqueue(myQueue, name)
type(Queue), intent(inout) :: myQueue
type(QueueElement), pointer :: newQueueElement
character(20), intent(in) :: name
allocate(newQueueElement)
newQueueElement%name = name
if(.not.associated(myQueue%head)) then
myQueue%head => newQueueElement
else
myQueue%tail%next => newQueueElement
end if
myQueue%tail => newQueueElement
end subroutine enqueue
subroutine dequeue(myQueue, name)
type(Queue), intent(inout) :: myQueue
type(QueueElement), pointer :: deleteQueueElement
character(20), intent(out), optional :: name
if(associated(myQueue%head)) then
if(associated(myQueue%head, myQueue%tail)) then
myQueue%tail => null()
end if
deleteQueueElement => myQueue%head
myQueue%head => deleteQueueElement%next
if(present(name))then
name = deleteQueueElement%name
end if
deallocate(deleteQueueElement)
end if
end subroutine dequeue
subroutine traverse(myQueue, task)
type(Queue), intent(inout) :: myQueue
type(QueueElement), pointer :: current
interface
subroutine task(name)
character(20), intent(inout):: name
end subroutine task
end interface
current => myQueue%head
do while(associated(current))
call task(current%name)
current => current%next
end do
end subroutine traverse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment