seo: add social image

This commit is contained in:
Yangshun Tay
2022-05-11 10:18:34 +08:00
parent 5e137e236d
commit 75c75293b1
70 changed files with 138 additions and 0 deletions

View File

@@ -15,6 +15,10 @@ sidebar_label: Trie
toc_max_heading_level: 2
---
<head>
<meta property="og:image" content="https://www.techinterviewhandbook.org/social/algorithms/algorithms/algorithms-trie.png" />
</head>
## Introduction
Tries are special trees (prefix trees) that make searching and storing strings more efficient. Tries have many practical applications, such as conducting searches and providing autocomplete. It is helpful to know these common applications so that you can easily identify when a problem can be efficiently solved using a trie.