diff options
| author | Paul Buetow <paul@buetow.org> | 2023-03-24 22:20:04 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-03-24 22:20:04 +0200 |
| commit | 8f7a673fccf1343e4468bb953d93f5b1b7372f77 (patch) | |
| tree | c901aa7be9d7dc5a2a4bdf043fc7320a1b600ad6 /sort | |
| parent | 02384f2667a2f10c9d776d6a259701d0b6542b54 (diff) | |
we are on codeberg now
Diffstat (limited to 'sort')
| -rw-r--r-- | sort/bottomupmerge.go | 2 | ||||
| -rw-r--r-- | sort/insertion.go | 2 | ||||
| -rw-r--r-- | sort/merge.go | 2 | ||||
| -rw-r--r-- | sort/parallelmerge.go | 2 | ||||
| -rw-r--r-- | sort/parallelquick.go | 2 | ||||
| -rw-r--r-- | sort/quick.go | 2 | ||||
| -rw-r--r-- | sort/quick3way.go | 2 | ||||
| -rw-r--r-- | sort/selection.go | 2 | ||||
| -rw-r--r-- | sort/shell.go | 2 | ||||
| -rw-r--r-- | sort/shuffle.go | 2 | ||||
| -rw-r--r-- | sort/sort_test.go | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/sort/bottomupmerge.go b/sort/bottomupmerge.go index 467c4e0..7708767 100644 --- a/sort/bottomupmerge.go +++ b/sort/bottomupmerge.go @@ -1,7 +1,7 @@ package sort import ( - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func BottomUpMerge(a ds.ArrayList) ds.ArrayList { diff --git a/sort/insertion.go b/sort/insertion.go index bba3698..62dcf32 100644 --- a/sort/insertion.go +++ b/sort/insertion.go @@ -1,7 +1,7 @@ package sort import ( - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func Insertion(a ds.ArrayList) ds.ArrayList { diff --git a/sort/merge.go b/sort/merge.go index e2cfe01..d333b6d 100644 --- a/sort/merge.go +++ b/sort/merge.go @@ -1,7 +1,7 @@ package sort import ( - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func Merge(a ds.ArrayList) ds.ArrayList { diff --git a/sort/parallelmerge.go b/sort/parallelmerge.go index 5186632..8c6f780 100644 --- a/sort/parallelmerge.go +++ b/sort/parallelmerge.go @@ -3,7 +3,7 @@ package sort import ( "sync" - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func ParallelMerge(a ds.ArrayList) ds.ArrayList { diff --git a/sort/parallelquick.go b/sort/parallelquick.go index 195a2c8..ae203f2 100644 --- a/sort/parallelquick.go +++ b/sort/parallelquick.go @@ -3,7 +3,7 @@ package sort import ( "sync" - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func ParallelQuick(a ds.ArrayList) ds.ArrayList { diff --git a/sort/quick.go b/sort/quick.go index 3502cf0..46b750a 100644 --- a/sort/quick.go +++ b/sort/quick.go @@ -3,7 +3,7 @@ package sort import ( "math/rand" - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func Quick(a ds.ArrayList) ds.ArrayList { diff --git a/sort/quick3way.go b/sort/quick3way.go index 76e15c8..343fae9 100644 --- a/sort/quick3way.go +++ b/sort/quick3way.go @@ -1,7 +1,7 @@ package sort import ( - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) // Quick3Way uses a 3-way partitioning so it is more efficient dealing with duplicates diff --git a/sort/selection.go b/sort/selection.go index 9b42b55..20a53a5 100644 --- a/sort/selection.go +++ b/sort/selection.go @@ -1,7 +1,7 @@ package sort import ( - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func Selection(a ds.ArrayList) ds.ArrayList { diff --git a/sort/shell.go b/sort/shell.go index 821dfc8..3041627 100644 --- a/sort/shell.go +++ b/sort/shell.go @@ -1,7 +1,7 @@ package sort import ( - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func Shell(a ds.ArrayList) ds.ArrayList { diff --git a/sort/shuffle.go b/sort/shuffle.go index cf42a85..cf5bb14 100644 --- a/sort/shuffle.go +++ b/sort/shuffle.go @@ -3,7 +3,7 @@ package sort import ( "math/rand" - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) func Shuffle(a ds.ArrayList) ds.ArrayList { diff --git a/sort/sort_test.go b/sort/sort_test.go index d785d55..a0ac527 100644 --- a/sort/sort_test.go +++ b/sort/sort_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/snonux/algorithms/ds" + "codeberg.org/snonux/algorithms/ds" ) // Store results here to avoid compiler optimizations |
