aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-05 23:47:49 +0200
committerMattias Andrée <m@maandree.se>2024-10-05 23:47:49 +0200
commit2777b171027ccac4e546993d8e3389c8ea121a57 (patch)
tree847aaa2d7433fc19ab29a809b96894169c7893fa
parentUpdate e-mail (diff)
downloadalgorithms-and-data-structures-master.tar.gz
algorithms-and-data-structures-master.tar.bz2
algorithms-and-data-structures-master.tar.xz
Update e-mailHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r--csrc/algorithms/arrays/minmax.h2
-rw-r--r--csrc/algorithms/arrays/reverse.h2
-rw-r--r--csrc/algorithms/arrays/rotate.h2
-rw-r--r--csrc/algorithms/arrays/sorted.h2
-rw-r--r--csrc/algorithms/bits/absolute.h2
-rw-r--r--csrc/algorithms/bits/powers.h2
-rw-r--r--csrc/algorithms/make_fun2
-rw-r--r--src/algorithms/arrays/MinMax.java2
-rw-r--r--src/algorithms/arrays/Reverse.java2
-rw-r--r--src/algorithms/arrays/Rotate.java2
-rw-r--r--src/algorithms/arrays/Sorted.java2
-rw-r--r--src/algorithms/bits/Absolute.java2
-rw-r--r--src/algorithms/bits/Bits.java2
-rw-r--r--src/algorithms/bits/MinMax.java2
-rw-r--r--src/algorithms/bits/Powers.java2
-rw-r--r--src/algorithms/bits/Signum.java2
-rw-r--r--src/algorithms/searching/BinarySearch.java2
-rw-r--r--src/algorithms/searching/HybridBinarySearch.java2
-rw-r--r--src/algorithms/searching/HybridInterpolationSearch.java2
-rw-r--r--src/algorithms/searching/InterpolationSearch.java2
-rw-r--r--src/algorithms/searching/LinearSearch.java2
-rw-r--r--src/algorithms/searching/MultibinarySearch.java2
-rw-r--r--src/algorithms/searching/MultiinterpolationSearch.java2
-rw-r--r--src/algorithms/shuffling/CardShuffle.java2
-rw-r--r--src/algorithms/shuffling/HumanShuffle.java2
-rw-r--r--src/algorithms/shuffling/KnuthShuffle.java2
-rw-r--r--src/algorithms/shuffling/SattoloShuffle.java2
-rw-r--r--src/algorithms/sorting/other/TopologicalSort.java2
-rw-r--r--src/comparable2
-rw-r--r--src/datastructures/PerformanceTest.java2
-rw-r--r--src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayCircularXORDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArraySinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayTaillessXORDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/ArrayXORDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/Association.java2
-rw-r--r--src/datastructures/linkedlists/CircularDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/CircularSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/DoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/HeadlessDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/HeadlessSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/SentinelDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/SentinelSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/SinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/TaillessDoublyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/TaillessSinglyLinkedList.java2
-rw-r--r--src/datastructures/linkedlists/template2
53 files changed, 53 insertions, 53 deletions
diff --git a/csrc/algorithms/arrays/minmax.h b/csrc/algorithms/arrays/minmax.h
index a9fb382..007374e 100644
--- a/csrc/algorithms/arrays/minmax.h
+++ b/csrc/algorithms/arrays/minmax.h
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/csrc/algorithms/arrays/reverse.h b/csrc/algorithms/arrays/reverse.h
index 88a7f27..7dfb6a1 100644
--- a/csrc/algorithms/arrays/reverse.h
+++ b/csrc/algorithms/arrays/reverse.h
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/csrc/algorithms/arrays/rotate.h b/csrc/algorithms/arrays/rotate.h
index 9791838..0ab2de2 100644
--- a/csrc/algorithms/arrays/rotate.h
+++ b/csrc/algorithms/arrays/rotate.h
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/csrc/algorithms/arrays/sorted.h b/csrc/algorithms/arrays/sorted.h
index 71037ab..d2c0d9b 100644
--- a/csrc/algorithms/arrays/sorted.h
+++ b/csrc/algorithms/arrays/sorted.h
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/csrc/algorithms/bits/absolute.h b/csrc/algorithms/bits/absolute.h
index d082429..8fa396d 100644
--- a/csrc/algorithms/bits/absolute.h
+++ b/csrc/algorithms/bits/absolute.h
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/csrc/algorithms/bits/powers.h b/csrc/algorithms/bits/powers.h
index 1018036..54462f0 100644
--- a/csrc/algorithms/bits/powers.h
+++ b/csrc/algorithms/bits/powers.h
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/csrc/algorithms/make_fun b/csrc/algorithms/make_fun
index 2e763ec..97a6894 100644
--- a/csrc/algorithms/make_fun
+++ b/csrc/algorithms/make_fun
@@ -1,5 +1,5 @@
# -*- shell-script -*-
-# Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+# Copyright © 2014 Mattias Andrée (m@maandree.se)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/arrays/MinMax.java b/src/algorithms/arrays/MinMax.java
index cd86460..4615c3e 100644
--- a/src/algorithms/arrays/MinMax.java
+++ b/src/algorithms/arrays/MinMax.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/arrays/Reverse.java b/src/algorithms/arrays/Reverse.java
index df24716..cb95c91 100644
--- a/src/algorithms/arrays/Reverse.java
+++ b/src/algorithms/arrays/Reverse.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/arrays/Rotate.java b/src/algorithms/arrays/Rotate.java
index 22ba033..f88729d 100644
--- a/src/algorithms/arrays/Rotate.java
+++ b/src/algorithms/arrays/Rotate.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/arrays/Sorted.java b/src/algorithms/arrays/Sorted.java
index c99ada5..0d18797 100644
--- a/src/algorithms/arrays/Sorted.java
+++ b/src/algorithms/arrays/Sorted.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/bits/Absolute.java b/src/algorithms/bits/Absolute.java
index b1c29f4..fdfe6f9 100644
--- a/src/algorithms/bits/Absolute.java
+++ b/src/algorithms/bits/Absolute.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/bits/Bits.java b/src/algorithms/bits/Bits.java
index e66de80..8ebb532 100644
--- a/src/algorithms/bits/Bits.java
+++ b/src/algorithms/bits/Bits.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/bits/MinMax.java b/src/algorithms/bits/MinMax.java
index 624ea57..a7fd0df 100644
--- a/src/algorithms/bits/MinMax.java
+++ b/src/algorithms/bits/MinMax.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/bits/Powers.java b/src/algorithms/bits/Powers.java
index 2238bcd..19968e5 100644
--- a/src/algorithms/bits/Powers.java
+++ b/src/algorithms/bits/Powers.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/bits/Signum.java b/src/algorithms/bits/Signum.java
index e5ce712..8245723 100644
--- a/src/algorithms/bits/Signum.java
+++ b/src/algorithms/bits/Signum.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/BinarySearch.java b/src/algorithms/searching/BinarySearch.java
index 6d39ba9..3e9775a 100644
--- a/src/algorithms/searching/BinarySearch.java
+++ b/src/algorithms/searching/BinarySearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/HybridBinarySearch.java b/src/algorithms/searching/HybridBinarySearch.java
index 8bca30b..b854d54 100644
--- a/src/algorithms/searching/HybridBinarySearch.java
+++ b/src/algorithms/searching/HybridBinarySearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/HybridInterpolationSearch.java b/src/algorithms/searching/HybridInterpolationSearch.java
index bcea66a..9daa7c1 100644
--- a/src/algorithms/searching/HybridInterpolationSearch.java
+++ b/src/algorithms/searching/HybridInterpolationSearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/InterpolationSearch.java b/src/algorithms/searching/InterpolationSearch.java
index 63bfd17..82f1d83 100644
--- a/src/algorithms/searching/InterpolationSearch.java
+++ b/src/algorithms/searching/InterpolationSearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/LinearSearch.java b/src/algorithms/searching/LinearSearch.java
index 0e621b7..558e4a1 100644
--- a/src/algorithms/searching/LinearSearch.java
+++ b/src/algorithms/searching/LinearSearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/MultibinarySearch.java b/src/algorithms/searching/MultibinarySearch.java
index 2b473a1..3e2de61 100644
--- a/src/algorithms/searching/MultibinarySearch.java
+++ b/src/algorithms/searching/MultibinarySearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/searching/MultiinterpolationSearch.java b/src/algorithms/searching/MultiinterpolationSearch.java
index 37cb37f..5ca2709 100644
--- a/src/algorithms/searching/MultiinterpolationSearch.java
+++ b/src/algorithms/searching/MultiinterpolationSearch.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/shuffling/CardShuffle.java b/src/algorithms/shuffling/CardShuffle.java
index 098f855..bb2234e 100644
--- a/src/algorithms/shuffling/CardShuffle.java
+++ b/src/algorithms/shuffling/CardShuffle.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/shuffling/HumanShuffle.java b/src/algorithms/shuffling/HumanShuffle.java
index ed3e519..3761e8a 100644
--- a/src/algorithms/shuffling/HumanShuffle.java
+++ b/src/algorithms/shuffling/HumanShuffle.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/shuffling/KnuthShuffle.java b/src/algorithms/shuffling/KnuthShuffle.java
index 910b685..ecc1376 100644
--- a/src/algorithms/shuffling/KnuthShuffle.java
+++ b/src/algorithms/shuffling/KnuthShuffle.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/shuffling/SattoloShuffle.java b/src/algorithms/shuffling/SattoloShuffle.java
index e981cb8..bb6beae 100644
--- a/src/algorithms/shuffling/SattoloShuffle.java
+++ b/src/algorithms/shuffling/SattoloShuffle.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/algorithms/sorting/other/TopologicalSort.java b/src/algorithms/sorting/other/TopologicalSort.java
index 48ff604..887fa99 100644
--- a/src/algorithms/sorting/other/TopologicalSort.java
+++ b/src/algorithms/sorting/other/TopologicalSort.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/comparable b/src/comparable
index 14a0490..4df61ca 100644
--- a/src/comparable
+++ b/src/comparable
@@ -1,6 +1,6 @@
# -*- shell-script -*-
-# Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+# Copyright © 2014 Mattias Andrée (m@maandree.se)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/PerformanceTest.java b/src/datastructures/PerformanceTest.java
index b771aad..4d4bc39 100644
--- a/src/datastructures/PerformanceTest.java
+++ b/src/datastructures/PerformanceTest.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
index cb2c1b6..26bacff 100644
--- a/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java b/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java
index bc5e2e8..0c038a0 100644
--- a/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayCircularXORDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayCircularXORDoublyLinkedList.java
index d29d39b..17325e2 100644
--- a/src/datastructures/linkedlists/ArrayCircularXORDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayCircularXORDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayDoublyLinkedList.java
index 182787f..6dddf33 100644
--- a/src/datastructures/linkedlists/ArrayDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java b/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java
index 93b9abd..4220c9b 100644
--- a/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArraySentinelDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java b/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java
index 79822ea..758fd2d 100644
--- a/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArraySentinelSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArraySinglyLinkedList.java b/src/datastructures/linkedlists/ArraySinglyLinkedList.java
index efe69c0..4d6f1c3 100644
--- a/src/datastructures/linkedlists/ArraySinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArraySinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java
index 3c41d56..3a23bf6 100644
--- a/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayTaillessDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java b/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java
index 06f9210..c8bf0ce 100644
--- a/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayTaillessSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayTaillessXORDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayTaillessXORDoublyLinkedList.java
index c530ca2..c29a5ea 100644
--- a/src/datastructures/linkedlists/ArrayTaillessXORDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayTaillessXORDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/ArrayXORDoublyLinkedList.java b/src/datastructures/linkedlists/ArrayXORDoublyLinkedList.java
index 3b4bb40..e2636d1 100644
--- a/src/datastructures/linkedlists/ArrayXORDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/ArrayXORDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/Association.java b/src/datastructures/linkedlists/Association.java
index a4f93b6..630f81c 100644
--- a/src/datastructures/linkedlists/Association.java
+++ b/src/datastructures/linkedlists/Association.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/CircularDoublyLinkedList.java b/src/datastructures/linkedlists/CircularDoublyLinkedList.java
index 63997e2..73e0e06 100644
--- a/src/datastructures/linkedlists/CircularDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/CircularDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/CircularSinglyLinkedList.java b/src/datastructures/linkedlists/CircularSinglyLinkedList.java
index 08f2754..f440622 100644
--- a/src/datastructures/linkedlists/CircularSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/CircularSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/DoublyLinkedList.java b/src/datastructures/linkedlists/DoublyLinkedList.java
index fc0eeb0..d60a875 100644
--- a/src/datastructures/linkedlists/DoublyLinkedList.java
+++ b/src/datastructures/linkedlists/DoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/HeadlessDoublyLinkedList.java b/src/datastructures/linkedlists/HeadlessDoublyLinkedList.java
index 444e7b3..5471cf1 100644
--- a/src/datastructures/linkedlists/HeadlessDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/HeadlessDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/HeadlessSinglyLinkedList.java b/src/datastructures/linkedlists/HeadlessSinglyLinkedList.java
index 821439c..adc89d9 100644
--- a/src/datastructures/linkedlists/HeadlessSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/HeadlessSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/SentinelDoublyLinkedList.java b/src/datastructures/linkedlists/SentinelDoublyLinkedList.java
index c448c52..e739415 100644
--- a/src/datastructures/linkedlists/SentinelDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/SentinelDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/SentinelSinglyLinkedList.java b/src/datastructures/linkedlists/SentinelSinglyLinkedList.java
index 2bef187..6809ce1 100644
--- a/src/datastructures/linkedlists/SentinelSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/SentinelSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/SinglyLinkedList.java b/src/datastructures/linkedlists/SinglyLinkedList.java
index 8e9e1d3..ae9a4b1 100644
--- a/src/datastructures/linkedlists/SinglyLinkedList.java
+++ b/src/datastructures/linkedlists/SinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/TaillessDoublyLinkedList.java b/src/datastructures/linkedlists/TaillessDoublyLinkedList.java
index b58599f..2514805 100644
--- a/src/datastructures/linkedlists/TaillessDoublyLinkedList.java
+++ b/src/datastructures/linkedlists/TaillessDoublyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/TaillessSinglyLinkedList.java b/src/datastructures/linkedlists/TaillessSinglyLinkedList.java
index 106decd..8ab3de6 100644
--- a/src/datastructures/linkedlists/TaillessSinglyLinkedList.java
+++ b/src/datastructures/linkedlists/TaillessSinglyLinkedList.java
@@ -1,5 +1,5 @@
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
diff --git a/src/datastructures/linkedlists/template b/src/datastructures/linkedlists/template
index b225457..c2c0c40 100644
--- a/src/datastructures/linkedlists/template
+++ b/src/datastructures/linkedlists/template
@@ -1,6 +1,6 @@
/* -*- java -*- */
/**
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014 Mattias Andrée (m@maandree.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by