數據結構示例之查找子字符串的起始位置

如下爲「查找子字符串的起始位置」的簡單示例3d 1. 用c語言實現的版本code #include <stdio.h> #include <string.h> /* 查找子字符串的起始位置 */ int nfind(char *strSrc, char *strFind) { int i = 0, j = -1; int lastSrcPos = strlen(strSrc) - 1;
相關文章
相關標籤/搜索