posts: add trie
This commit is contained in:
parent
1cde7ff539
commit
8e5ac9d1e6
23
content/posts/2024-06-30-trie/index.md
Normal file
23
content/posts/2024-06-30-trie/index.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
title: "Trie"
|
||||||
|
date: 2024-06-30T11:07:49+01:00
|
||||||
|
draft: false # I don't care for draft mode, git has branches for that
|
||||||
|
description: "A cool map"
|
||||||
|
tags:
|
||||||
|
- algorithms
|
||||||
|
- data structures
|
||||||
|
- python
|
||||||
|
categories:
|
||||||
|
- programming
|
||||||
|
series:
|
||||||
|
- Cool algorithms
|
||||||
|
favorite: false
|
||||||
|
disable_feed: false
|
||||||
|
---
|
||||||
|
|
||||||
|
This time, let's talk about the [_Trie_][wiki], which is a tree-based mapping
|
||||||
|
structure most often used for string keys.
|
||||||
|
|
||||||
|
[wiki]: https://en.wikipedia.org/wiki/Trie
|
||||||
|
|
||||||
|
<!--more-->
|
Loading…
Reference in a new issue