數據結構示例之字符串替換

如下爲「字符串替換」的簡單示例:spa 1. 用c語言實現的版本code #include<stdio.h> /* 在字符串中指定位置開始替換子字符串 */ char *strreplace(char *s1, char *s2, int pos) { --pos; int i = 0, j = pos; for ( ; s1[j] != '\0'; ++j) { if (s2[i]
相關文章
相關標籤/搜索