Skip to content

Commit 9214090

Browse files
committed
chore(docs): add more methods to readme
1 parent 1cb0df4 commit 9214090

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ This repository contains an implementation of a **Trie** (prefix tree) in C, a d
1515
Trie createTrie(int maxNode);
1616
void insertInTrie(Trie trie, unsigned char *w);
1717
int isInTrie(Trie trie, unsigned char *w);
18+
void insertPrefixes(Trie trie, unsigned char *w);
19+
void insertSuffixes(Trie trie, unsigned char *w);
20+
void insertFactors(Trie trie, unsigned char *w);
1821
```
1922
2023
## Project Structure

0 commit comments

Comments
 (0)