Skip to content
View mejibyte's full-sized avatar

Block or report mejibyte

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. competitive_programming competitive_programming Public

    My solutions to programming contest problems from different sources (UVa, TopCoder, Live Archive, SPOJ, etc).

    Roff 199 66

  2. computer_graphics_challenges computer_graphics_challenges Public

    Homework for my Computer Graphics course.

    C++ 20 9

  3. como_vamos como_vamos Public

    An utility to keep track of solved problems to train for programming contests.

    HTML 11 2

  4. My implementation of Aho-Corasick's ... My implementation of Aho-Corasick's algorithm for string matching.
    1
    using namespace std;
    2
    #include <algorithm>
    3
    #include <iostream>
    4
    #include <iterator>
    5
    #include <numeric>
  5. Implementation of Ukkonen's algorith... Implementation of Ukkonen's algorithm to build a prefix tree in O(n)
    1
    using namespace std;
    2
    #include <algorithm>
    3
    #include <iostream>
    4
    #include <iterator>
    5
    #include <sstream>