摘要: 今天编写了用栈实现回文的代码. 代码如下: #include<iostream>using namespace std;const int Maxsize = 100;class stact {public: char data[Maxsize]; int top = 0; void push(ch 阅读全文
posted @ 2021-09-28 23:18 炽灬 阅读(94) 评论(0) 推荐(0)