Giter Site home page Giter Site logo

shantanu66 / dictionarysearch-using-trie Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 10 KB

this is a data structure and algorithm project which is made using TRIE data structure to help our user to find the meaning, synonyms, antonyms and examples of an entered word and if the user enters an invalid word then we help them to explore more words similar to the entered word.

C++ 100.00%

dictionarysearch-using-trie's Introduction

DictionarySearch-using-Trie

this is a data structure and algorithm project which is made using TRIE data structure to help our user to find the meaning, synonyms, antonyms and examples of an entered word and if the user enters an invalid word then we help them to explore more words similar to the entered word. What makes the trie structure really perform well in these situations is that the cost of looking up a word or prefix is fixed and dependent only on the number of characters in the word and not on the size of the vocabulary. However, despite this, even a compressed trie will usually require more memory than a tree or array. This is because, for each node, at least 26 x sizeof(pointer) bytes are necessary, plus some overhead for the object and additional attributes. On a 64-bit machine, each node requires more than 200 bytes, whereas a string character requires a single byte, or two if we consider UTF strings. Key Features :

Insert, search and delete words in the dictionary.
Alphabetically printing the words.
Prefix searching i.e. all words with the entered prefix will be displayed.
Nearest neighbor search i.e. shows suggested words if the word you are looking for is not found.

dictionarysearch-using-trie's People

Contributors

shantanu66 avatar

Stargazers

Sougato Roy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.