Skip to content

Instantly share code, notes, and snippets.

View sauravgpt's full-sized avatar
🎯
Focusing

Saurav Kumar Gupta sauravgpt

🎯
Focusing
View GitHub Profile
@sauravgpt
sauravgpt / trie_impl.cpp
Created May 21, 2021 09:04
Trie Implementation from Scratch
#include<bits/stdc++.h>
using namespace std;
// Considering only small alphabets
class TrieNode {
public:
TrieNode* children[26];
bool endOfWord;
int count;