数据结构之串

学习串的时候写的一点笔记 方便自己复习,也希望能给需要这个的人一点帮助 代码如下: #include<bits/stdc++.h>//万能头文件,G++编译器 #define maxsize 1024 using namespace std; int strlenth (char s[])//s代表目标串 { int i=0; while(s[i]!='\0') {
相关文章
相关标签/搜索