This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph { | |
graph [ordering="out"] | |
node [share=circle] | |
n9 [label="9"] | |
n12 [label="12"] | |
n14 [label="14"] | |
n17 [label="17"] | |
n19 [label="19"] | |
n23 [label="23"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <utility> | |
#include <limits> | |
#include <map> | |
using mymap = std::map<std::pair<int, int>, int>; | |
std::ptrdiff_t num_per_node(const mymap &map, const int node_id) | |
{ | |
using std::distance; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boost/chrono.hpp> | |
#include <chrono> | |
#include <thread> | |
#include <iostream> | |
#include "/space/code/sufex/src/util/proctime.hpp" | |
int main() | |
{ | |
typedef boost::chrono::process_user_cpu_clock CPUClock; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <map> | |
#include <string> | |
#include <algorithm> | |
#include <iostream> | |
class substrview | |
{ | |
std::string::const_iterator _from; | |
std::string::const_iterator _to; | |
public: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
class Suxtree: | |
# The ID of the node most recently inserted. 0 is the ID of the | |
# root node; we assume it exists right from the start. | |
max_node = 0 | |
# The edges hash. Each edge has a unique ID (consisting of a node | |
# ID and an initial character. The ID is constructed by the | |
# edgeid() method below). The hash below maps edge IDs to edge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// These are dot graphs used for the little figures in some | |
// of my suffix-tree related posts on Stackoverflow, in | |
// particular: | |
// | |
// http://stackoverflow.com/a/9513423/777186 | |
// | |
// To use them, simply apply the "dot" program to this file. | |
// For example, to generate a PNG image: | |
// |