Last active
October 3, 2015 10:59
-
-
Save aahung/87ab333405e50f2c23d1 to your computer and use it in GitHub Desktop.
ICPC 4966
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 <vector> | |
#include <string> | |
using namespace std; | |
typedef struct node_t { | |
vector<int> values; | |
vector<node_t *> e_values; | |
int evaluate; | |
} node_t; | |
int main() { | |
string s; | |
while (cin >> s) { | |
vector<vector<node_t> > tree; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment