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
a25215cd
Commit
a25215cd
authored
9 months ago
by
dali662d
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
e610b97e
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
Sonderuebung/SoSe2024/SU_2024_06_11/labyrinth.f95
+110
-0
110 additions, 0 deletions
Sonderuebung/SoSe2024/SU_2024_06_11/labyrinth.f95
with
110 additions
and
0 deletions
Sonderuebung/SoSe2024/SU_2024_06_11/labyrinth.f95
0 → 100644
+
110
−
0
View file @
a25215cd
! Löst ein Labyrinth (als Character Array gespeichert)
! Start und Endpunkt liegen auf den Rändern
! Wände sind x (die Ränder sind bis auf Start und Endpukt Wände)
! freie Plätze sind .
! Der Weg wird mit o markiert
module
labyrinth_mod
implicit
none
private
public
::
get
,
solve
contains
subroutine
get
(
A
,
start
)
character
,
dimension
(:,:),
allocatable
,
intent
(
out
)
::
A
integer
,
dimension
(
2
),
intent
(
out
)
::
start
integer
::
n
,
m
,
i
,
ios
write
(
*
,
*
)
"Wie viele Zeilen und Spalten hat das Labyrinth?"
do
read
(
*
,
*
)
m
,
n
if
(
n
>=
3
.and.
m
>=
3
)
exit
write
(
*
,
*
)
"Die Werte müssen beide >= 3 sein. Erneute Eingabe:"
end
do
write
(
*
,
*
)
"Was ist die Startposition? (Zeile, Spalte)"
read
(
*
,
*
)
start
! hier sollte evtll noch ein test hin, ob start tatsächlich auf dem Rand liegt
allocate
(
A
(
m
,
n
))
open
(
30
,
file
=
"lab.txt"
,
action
=
"read"
,
status
=
"old"
,
iostat
=
ios
)
if
(
ios
==
0
)
then
do
i
=
1
,
m
read
(
30
,
*
)
A
(
i
,:)
end
do
else
write
(
*
,
*
)
"Datei konnte nicht geoeffnet werden."
end
if
close
(
30
)
end
subroutine
get
subroutine
put
(
A
)
character
,
dimension
(:,:),
intent
(
in
)
::
A
integer
::
i
do
i
=
1
,
size
(
A
,
1
)
write
(
*
,
*
)
A
(
i
,:)
end
do
end
subroutine
put
subroutine
solve
(
A
,
start
)
character
,
dimension
(:,:),
intent
(
inout
)
::
A
integer
,
dimension
(
2
),
intent
(
in
)
::
start
A
(
start
(
1
),
start
(
2
))
=
"o"
if
(
start
(
1
)
==
1
)
then
call
solve_rec
(
A
,
start
(
1
)
+
1
,
start
(
2
))
! erster schritt ist nach unten
else
! start(2) == 1
call
solve_rec
(
A
,
start
(
1
),
start
(
2
)
+
1
)
end
if
end
subroutine
solve
recursive
subroutine
solve_rec
(
A
,
i
,
j
)
character
,
dimension
(:,:),
intent
(
inout
)
::
A
integer
,
intent
(
in
)
::
i
,
j
! Test ob Ende aka befinden wir uns gerade auf dem rand?
if
(
i
==
1
.or.
j
==
1
.or.
i
==
size
(
A
,
1
)
.or.
j
==
size
(
A
,
2
))
then
A
(
i
,
j
)
=
"o"
call
put
(
A
)
else
! Prüfe die Umgebungen ob man weiter gehen kann
A
(
i
,
j
)
=
"o"
if
(
A
(
i
,
j
+1
)
==
"."
)
call
solve_rec
(
A
,
i
,
j
+1
)
! rechts
if
(
A
(
i
+1
,
j
)
==
"."
)
call
solve_rec
(
A
,
i
+1
,
j
)
! unten
if
(
A
(
i
,
j
-1
)
==
"."
)
call
solve_rec
(
A
,
i
,
j
-1
)
! links
if
(
A
(
i
-1
,
j
)
==
"."
)
call
solve_rec
(
A
,
i
-1
,
j
)
! oben
end
if
! Wert wieder löschen
A
(
i
,
j
)
=
"."
end
subroutine
solve_rec
end
module
labyrinth_mod
program
labyrinth
use
labyrinth_mod
implicit
none
character
,
dimension
(:,:),
allocatable
::
A
integer
,
dimension
(
2
)
::
start
call
get
(
A
,
start
)
call
solve
(
A
,
start
)
deallocate
(
A
)
end
program
labyrinth
\ No newline at end of file
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