摘要: #include<stdio.h> #include<stdlib.h> typedef struct Node{ int Data; struct Node *Next; } LinkStack ; LinkStack *CreateStack(){ LinkStack *S; S = (Link 阅读全文
posted @ 2019-11-04 10:44 Vaik134 阅读(116) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> typedef struct fushu { int xubu; int shibu; struct fushu *next; }fushu_node,*fushu; int MUL(fushu *A,fushu B,fush 阅读全文
posted @ 2019-11-04 09:57 Vaik134 阅读(114) 评论(0) 推荐(0) 编辑