2019年4月27日
摘要: 1.代码 #include<iostream>using namespace std;typedef struct Node{ char data; struct Node* lchild; struct Node* rchild;}Tree; Tree* T; void CreatTree(Tre 阅读全文
posted @ 2019-04-27 16:57 201821123052 阅读(69) 评论(0) 推荐(0)
  2019年3月24日
摘要: #1代码段1简介:找出两个序列A,B的中位数 ##1.1代码1 ElemType Search(SqLists *A,SqList *B) { int i=0,j=0,k=0; //1 while(i<A->length&&j<B->length){ //2 k++; //3 if(A->data[ 阅读全文
posted @ 2019-03-24 22:36 201821123052 阅读(91) 评论(0) 推荐(0)