摘要:
这道题目我测试了好多次都没问题,但是就是无法AC,十分愤怒。我编程习惯十分差,谁要是发现Bug。求指点!#include #include #include typedef struct SString{ char e[200];}SString;typedef struct IP{ i... 阅读全文
posted @ 2015-01-27 23:26
赛亚人
阅读(97)
评论(0)
推荐(0)
摘要:
#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+... 阅读全文
posted @ 2015-01-27 19:35
赛亚人
阅读(120)
评论(0)
推荐(0)
摘要:
#include #include void Reverse(int n){ if(n==0) printf("0"); else if(n==1) printf("1"); else { Reverse(n>>1); ... 阅读全文
posted @ 2015-01-27 15:40
赛亚人
阅读(119)
评论(0)
推荐(0)
摘要:
#include #include typedef struct BiTNode{ int data; struct BiTNode *lchild,*rchild;}BiTNode,*BiTree;int main(){ int n,t,i; int a[100]={0};... 阅读全文
posted @ 2015-01-27 15:25
赛亚人
阅读(127)
评论(0)
推荐(0)
摘要:
#include #include typedef struct BiNode{ char data; struct BiNode *lchild,*rchild;}BiNode,*BiTree;void CreateTree(BiTree *T)//输入有技巧!!{ char c... 阅读全文
posted @ 2015-01-27 12:12
赛亚人
阅读(193)
评论(0)
推荐(0)
摘要:
#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 ... 阅读全文
posted @ 2015-01-27 10:17
赛亚人
阅读(348)
评论(0)
推荐(1)
浙公网安备 33010602011771号