摘要:
#include<iostream> #include<stdlib.h> using namespace std; typedef struct node{ int data; struct node* left; struct node* right; }Node; typedef struct 阅读全文
摘要:
#include<iostream> #include<set> using namespace std; int book[101],e[101][101]; int result[101][101]; int avoid[101]; int essent[101]; int avo,ess; i 阅读全文
摘要:
#include <iostream> #include <stack> #include <queue> using namespace std; //结点类 template <class T> class BinaryNode { public: T data; BinaryNode<T> * 阅读全文