在字符串s中查找子串t最后一次出现的位置

/*
 * 设计一个算法,在字符串s中查找子串t最后一次出现的位置
 */
#include
#include
#include

int lastindexof(char *s,char *t)
{
	char *s1=s;
	char *t1=t;
	int n1=strlen(s1);
	int n2=strlen(t1);
	int i=0;
	int j=0;
	//找到:true 没找到:false
	bool find=false;
	int loc=0;
	while(i 
  

 

你可能感兴趣的:(算法练习)