From 45a180fd6698c8a0b0406f8d9d4a31fa11d3df20 Mon Sep 17 00:00:00 2001 From: Ashwath Arora Date: Mon, 10 Oct 2022 02:20:33 +0530 Subject: [PATCH] added trie --- .../Trie/trie_insert_search_startWith.cpp | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 algorithms/CPlusPlus/Trie/trie_insert_search_startWith.cpp diff --git a/algorithms/CPlusPlus/Trie/trie_insert_search_startWith.cpp b/algorithms/CPlusPlus/Trie/trie_insert_search_startWith.cpp new file mode 100644 index 00000000..8c73a57c --- /dev/null +++ b/algorithms/CPlusPlus/Trie/trie_insert_search_startWith.cpp @@ -0,0 +1,44 @@ +#include +using namespace std; +typedef long long ll; +#define inf 1e9; +#define inf2 2e18; + + + +struct custom_hash { + static uint64_t splitmix64(uint64_t x) { x += 0x9e3779b97f4a7c15; x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; x = (x ^ (x >> 27)) * 0x94d049bb133111eb; return x ^ (x >> 31);} + size_t operator()(uint64_t x) const { static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count(); return splitmix64(x + FIXED_RANDOM); } +}; + + + +struct TrieNode{ TrieNode* child[26]; bool isEnd; + TrieNode(){ isEnd = false; for(int i = 0; i<26; i++){ child[i] = NULL; } } +}; +struct TrieNode* rootTrie; +void addTrie(string& s){ TrieNode* curr = rootTrie; for(int i = 0; ichild[n] == NULL){curr->child[n] = new TrieNode();} curr = curr->child[n]; } curr->isEnd = true; } +bool searchTrie(string& s){TrieNode* curr = rootTrie;for(int i = 0; ichild[n]) return false;curr = curr->child[n];}return curr->isEnd;} +bool startsWithTrie(string s) {int n = s.length();TrieNode* curr = rootTrie;for(int i =0 ; ichild[k] == NULL) return false;curr = curr->child[k];}return true;} + + + +int main(){ +//Jai Shree Ram + ios_base::sync_with_stdio(false); + cin.tie(NULL); + + string keys[] = {"the", "a", "there", "answer", "any", "by", "bye", "their" }; + int n = sizeof(keys)/sizeof(keys[0]); + struct TrieNode *root = getNode(); + + for (int i = 0; i < n; i++) insert(root, keys[i]); + + char output[][32] = {"Not present in trie", "Present in trie"}; + + cout<<"the"<<" --- "<