Git Product home page Git Product logo

practical-string-searching's Introduction

This is a mirror of my library hosted at https://create.stephan-brumme.com/practical-string-searching/

Practical String Searching

There is a huge number of scientific papers on fast, faster and super-fast string searching algorithms. They usually prove theoretical performance in O-Notation and most papers cover memory consumption as well.

However, theoretical performance isn't always the same as practical performance. That's why I always want to measure real-world throughput: this article presents hopefully understandable C implementations of the most common generic string search algorithms.

In addition I also wrote a simple tool called mygrep that prints all lines of a file where a search phrase is found. It doesn't come with all the bells and whistles of the Unix tool grep but achieves similar or sometimes even better speed.

Algorithms

Interface

All C functions share the same interface: const char* search(const char* haystack, const char* needle); for strings const char* search(const char* haystack, size_t haystackLength, const char* needle, size_t needleLength); for binary data

More ...

See my website https://create.stephan-brumme.com/practical-string-searching/ for a live demo, code examples and benchmarks.

practical-string-searching's People

Contributors

stbrumme avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

practical-string-searching's Issues

Possible error in native search?

Hi,

Thank you for this code. I have implemented the search in a string tokenizer that I wrote. But it seems that the line referenced below (in searchNative) might be wrong.

haystackLength -= haystackEnd - haystack;

If I test it as is then haystackLength get's too small too quickly, whilst if I just replace that line with:

haystackLength = haystackEnd - haystack;

then the algorithm makes sense to me and it works in my tests.

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.