Skip to content

Commit

Permalink
switching devices
Browse files Browse the repository at this point in the history
  • Loading branch information
pblan committed Jul 5, 2021
1 parent c63bfd9 commit a2722a1
Show file tree
Hide file tree
Showing 12 changed files with 4,806 additions and 4,445 deletions.
Binary file modified algo/algo.pdf
Binary file not shown.
4,551 changes: 109 additions & 4,442 deletions algo/algo.tex

Large diffs are not rendered by default.

2,259 changes: 2,259 additions & 0 deletions algo/baeume.tex

Large diffs are not rendered by default.

799 changes: 799 additions & 0 deletions algo/datenstrukturen.tex

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions algo/floyd.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
for(int i = 0; i < a.length; i++) {
for(int j = 0; j < a.length; j++) {
for(int k = 0; k < a.length; k++) {
if(a[j][k] > a[j][i] + a[i][k]) {
a[j][k] = a[j][i] + a[i][k];
}
}
}
}
Loading

0 comments on commit a2722a1

Please sign in to comment.