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. |