数据结构 串的算法实现

时间:2013-01-10 06:16:58
【文件属性】:
文件名称:数据结构 串的算法实现
文件大小:8KB
文件格式:TXT
更新时间:2013-01-10 06:16:58
数据结构 串 自己下咯看吧~~数据结构的,串的算法#include "stdafx.h" #include "stdio.h" #include "stdlib.h" #include "iostream.h" #include "conio.h" #include "string.h" #define MAXSIZE 255 typedef char SString[MAXSIZE+1]; //////////////////////////////////////// //////////////////////////////////////// int StrLength(SString s) { return s[0]; } ////////////////////////////////////////

网友评论