Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <chrono>
#include <memory>
#include <cstdlib>
#include "splay_tree.h"
#include "avl_tree.h"
int i = 0;
string words[3000];
ifstream input("wordlist1.txt");
while(! input.eof()) {
input.getline(words[i], 20);
i++;
}