diff options
| author | Daniel Gustafsson | 2025-10-17 07:38:49 +0000 |
|---|---|---|
| committer | Daniel Gustafsson | 2025-10-17 07:38:49 +0000 |
| commit | 6aa184c80f0cb0e20572441e0189567ed5176e1d (patch) | |
| tree | dea5dd7e67c97f14e39830abd351132609668984 | |
| parent | fabb33b351c2504a1985f9a1cdf697924cd5f023 (diff) | |
Replace defunct URL with stable archive.org URL in rbtree.c
The URL for "Sorting and Searching Algorithms: A Cookbook"
by Thomas Niemann has started returning 404, and since we
refer to the page for license terms this replaces the now
defunct link with one to the copy on archive.org.
Author: Chao Li <[email protected]>
Discussion: https://postgr.es/m/[email protected]
| -rw-r--r-- | src/backend/lib/rbtree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/lib/rbtree.c b/src/backend/lib/rbtree.c index 3b5e5faa9bf..1f0553f914d 100644 --- a/src/backend/lib/rbtree.c +++ b/src/backend/lib/rbtree.c @@ -7,9 +7,9 @@ * This code comes from Thomas Niemann's "Sorting and Searching Algorithms: * a Cookbook". * - * See http://www.cs.auckland.ac.nz/software/AlgAnim/niemann/s_man.htm for - * license terms: "Source code, when part of a software project, may be used - * freely without reference to the author." + * See https://web.archive.org/web/20131202103513/http://www.cs.auckland.ac.nz/software/AlgAnim/niemann/s_man.htm + * for license terms: "Source code, when part of a software project, may be + * used freely without reference to the author." * * Red-black trees are a type of balanced binary tree wherein (1) any child of * a red node is always black, and (2) every path from root to leaf traverses |
