From 300c354d6ab4c5fe3dd515cb864a54b183c153cd Mon Sep 17 00:00:00 2001
From: Jency <149723236+jency1@users.noreply.github.com>
Date: Tue, 9 Jul 2024 01:57:25 +0530
Subject: [PATCH] Added Trie data structure in DSA
---
Data Structures and Algorithm (DSA)/readme.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Data Structures and Algorithm (DSA)/readme.md b/Data Structures and Algorithm (DSA)/readme.md
index 948db9f2..d17cb6eb 100644
--- a/Data Structures and Algorithm (DSA)/readme.md
+++ b/Data Structures and Algorithm (DSA)/readme.md
@@ -101,6 +101,10 @@ Let's make coding fun and exciting! 🚀.
Graph |
A Graph is a non-linear data structure consisting of a finite set of vertices(or nodes) and a set of edges that connect a pair of nodes. Another important non-linear data structure is the graph. It is similar to the Tree data structure, with the difference that there is no particular root or leaf node, and it can be traversed in any order. |
+
+
+ Tries |
+ A trie, or prefix tree, is a tree-like data structure used to store a dynamic set of strings. Each node represents a character of a string, enabling efficient retrieval, insertion, and search operations, often used for autocomplete and spell checking. |