Skip to content

Instantly share code, notes, and snippets.

View nojima's full-sized avatar
o_O

Yusuke Nojima nojima

o_O
View GitHub Profile
@nojima
nojima / suffixarray.cpp
Created July 11, 2011 15:49
Suffix Array Construction and String Search
#include <algorithm>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <vector>
using namespace std;
struct Comp1 {
const char* str;
Comp1(const char* str): str(str) {}