2020年5月9日

摘要: #include<iostream> #include<stdlib.h> using namespace std; typedef struct node{ int data; struct node* left; struct node* right; }Node; typedef struct 阅读全文
posted @ 2020-05-09 09:55 二进制dd 阅读(160) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2020-05-09 09:52 二进制dd 阅读(243) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <stack> #include <queue> using namespace std; //结点类 template <class T> class BinaryNode { public: T data; BinaryNode<T> * 阅读全文
posted @ 2020-05-09 09:50 二进制dd 阅读(116) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; int n; void LSD(string *a, int N) { int W = a[0].length(), R = 256; string *Aux = new string[ 阅读全文
posted @ 2020-05-09 09:49 二进制dd 阅读(147) 评论(0) 推荐(0) 编辑

导航