Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROG-material-public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Walter, Wolfgang
PROG-material-public
Commits
b3840eac
Commit
b3840eac
authored
10 months ago
by
Jonas Riedel
Browse files
Options
Downloads
Patches
Plain Diff
Update Queue.f95
parent
0a26d8b8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Uebung/SoSe24/Queue.f95
+0
-46
0 additions, 46 deletions
Uebung/SoSe24/Queue.f95
with
0 additions
and
46 deletions
Uebung/SoSe24/Queue.f95
+
0
−
46
View file @
b3840eac
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment