数据结构示例之插入子字符串

如下为“插入子字符串”的简单示例:code 1. 用c语言实现的版本blog #include <stdio.h> #include <string.h> #include <stdlib.h> #define MAX_SIZE 100 /* 在指定位置后插入字符串 */ void insert (char *desStr, char *insertStr, int pos) { char
相关文章
相关标签/搜索