摘要: //堆栈实现 #include <stdio.h> #include <stdlib.h> Stack CreateStack(); bool Push(Stack S,int X); bool IsEmpty(Stack S); int StackCnt(Stack S);//统计栈里边元素的个数 阅读全文
posted @ 2020-04-08 16:57 喀秋莎1 阅读(24) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> typedef struct node* Node; struct node{ int exp; float coe; Node next; }; Node input(void); Node add(Node p1,No 阅读全文
posted @ 2020-04-08 16:05 喀秋莎1 阅读(125) 评论(0) 推荐(0)