Giter Site home page Giter Site logo

vivekarora-02 / spam-checker Goto Github PK

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

Spam emails are one of the most irritating things, and it eats up a lot of space, so to deal with that, we have a spam checker. Spam checker checks for some specific words in a file, which is considered spam when exceeding a certain number of repetitions in a file

C++ 100.00%

spam-checker's Introduction

Spam-Checker

Spam emails are one of the most irritating things, and it eats up a lot of space, so to deal with that, we have a spam checker. Spam checker checks for some specific words in a file, which is considered spam when exceeding a certain number of repetitions in a file

The project checks for spam mails. There is a file where you can add the words/sentences which are or can be categorized as spam, the code basically searches for these spam words in the content sent for checking, if the content contains those words, it is considered to be a spam, else given a clean chit

The above task is achieved using trie., it searches Trie is an efficient information retrieval data structure. Using Trie, search complexities can be brought to optimal limit (key length). If we store keys in binary search tree, a well-balanced BST will need time proportional to M * log N, where M is maximum string length and N is number of keys in tree. Using Trie, we can search the key in O(M) time.

spam-checker's People

Contributors

vivekarora-02 avatar

Watchers

 avatar

Forkers

ananya-14-04

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.