Skip to content

Commit efe4d94

Browse files
committed
Added credit to wikipedia for the image
1 parent 927cbf6 commit efe4d94

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Radix-Tree/README.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
A radix tree is a tree where a node can have any number of children. Each edge leading from a node to a child has a label (usually a string). A radix tree is often used to store strings or IP addresses and by traversing from the root to any leaf in the tree, (by concatenating all the labels of edges along the way) you can find any string. This is a radix tree:
44
![](/Radix-Tree/Images/radixtree.png)
5+
(Image from en.wikipedia.org)
56

67
## Implemenation
78

0 commit comments

Comments
 (0)