摘要:#include #include #include using namespace std; #define len 255 char* strcat(char *a, char *b){ int lena = sizeof(a); int lenb = sizeof(b); for(int i = lena-1; i > a; cout > b; s...
阅读全文
摘要:#include "stdio.h" #include #include #include using namespace std; int Prime(int number){ for(int i = 2; i > number; cout << "the result is :number = "; PrimeFactor(number); cout ...
阅读全文
摘要:#include"stdio.h" #include"stdlib.h" #include using namespace std; typedef char ElemType; typedef struct BiTNode{ ElemType data; struct BiTNode *lchild, *rchild; }BiTNode, *BiTree; void Cr...
阅读全文