Skip to content

Instantly share code, notes, and snippets.

View woodbri's full-sized avatar

Stephen Woodbridge woodbri

View GitHub Profile
@woodbri
woodbri / Makefile
Last active March 23, 2016 19:55 — forked from jl2/Makefile
A simple trie data structure in C++.
trie: main.cpp Makefile
clang++ -O3 -std=c++11 -stdlib=libc++ -Wall -o trie main.cpp -lboost_system
#!/usr/bin/env python
# Warning: This is not great code.
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#