2018-06-12 05:51:42 +00:00
|
|
|
#include<stdio.h>
|
|
|
|
|
|
|
|
int stack(void);
|
|
|
|
int list(void);
|
2018-06-12 09:03:31 +00:00
|
|
|
int tree(void);
|
2018-06-12 05:51:42 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2018-06-12 09:03:31 +00:00
|
|
|
list();
|
|
|
|
tree();
|
2018-06-12 05:51:42 +00:00
|
|
|
getchar();
|
|
|
|
return 0;
|
|
|
|
}
|