數據結構示例之插入子字符串

如下爲「插入子字符串」的簡單示例: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
相關文章
相關標籤/搜索