Skip to content

Commit 5fffd69

Browse files
committed
Update README.markdown
1 parent e1ac122 commit 5fffd69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Radix-Tree/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Radix Tree
22
---
3-
A radix tree (or radix trie, compact prefix tree) is a space-optimized tree used for constructing associative arrays that are usually expressed as strings. Edges in radix trees store strings. If you started at the root of the tree and traversed down to any node that has no children, concatenating the edges in order of traversal would result in a stored word. An example can be seen (here)[https://en.wikipedia.org/wiki/Radix_tree#/media/File:Patricia_trie.svg]
3+
A radix tree (or radix trie, compact prefix tree) is a space-optimized tree used for constructing associative arrays that are usually expressed as strings. Edges in radix trees store strings. If you started at the root of the tree and traversed down to any node that has no children, concatenating the edges in order of traversal would result in a stored word. An example can be seen [here](https://en.wikipedia.org/wiki/Radix_tree#/media/File:Patricia_trie.svg).

0 commit comments

Comments
 (0)