We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684d9a5 commit bdf5350Copy full SHA for bdf5350
packages/lexer/src/RedBlackTree.ts
@@ -41,7 +41,7 @@ const MIDDLE_DOT = '\u00b7'; // ·
41
* This is based on the "2-3" variant described in Robert Sedgewick's,
42
* "Left-leaning Red-Black Trees":
43
*
44
- * https://www.cs.princeton.edu/~rs/talks/LLRB/LLRB.pdf
+ * https://sedgewick.io/wp-content/themes/sedgewick/papers/2008LLRB.pdf
45
*/
46
export default class RedBlackTree<Tk extends Comparable<Tk>, Tv extends {}> {
47
_root: Node<Tk, Tv> | null;
0 commit comments