摘要:
这道题目我测试了好多次都没问题,但是就是无法AC,十分愤怒。我编程习惯十分差,谁要是发现Bug。求指点!#include #include #include typedef struct SString{ char e[200];}SString;typedef struct IP{ i... 阅读全文
摘要:
#include #include int c[10][10];void Chengji(int **a,int n,int k){ int **b; int x,y,z,t; b=(int **)malloc(n*sizeof(int *)); for(x=0;x<n;x+... 阅读全文
摘要:
#include #include void Reverse(int n){ if(n==0) printf("0"); else if(n==1) printf("1"); else { Reverse(n>>1); ... 阅读全文
摘要:
#include #include typedef struct BiTNode{ int data; struct BiTNode *lchild,*rchild;}BiTNode,*BiTree;int main(){ int n,t,i; int a[100]={0};... 阅读全文
摘要:
#include #include typedef struct BiNode{ char data; struct BiNode *lchild,*rchild;}BiNode,*BiTree;void CreateTree(BiTree *T)//输入有技巧!!{ char c... 阅读全文
摘要:
#include #include #define Num 125typedef struct Triple{ int i,j; int e;}Triple;typedef struct TS{ Triple data[Num]; int mu,nu,tu;}TS;void ... 阅读全文