2013年6月21日
摘要: 先是普通的数组做法 1 #include 2 #include 3 int main() 4 { 5 char ch[256] ; 6 while(~scanf("%s",ch)) 7 { 8 char sh[256] ; 9 int top = -1 ;//底下用于判断数组里是否是空10 int len = strlen(ch) ;11 for(int i = 0 ; i 2 #include 3 #include 4 #include 5 using namespace std; 6 int main... 阅读全文
posted @ 2013-06-21 21:48 枫、 阅读(322) 评论(0) 推荐(0) 编辑