Algorithm of C language to check whether a string is a substring of another string (with complete source code)

The complete source code of the algorithm of C language to check whether a string is a substring of another string (definition, implementation, main function test)

#include <iostream>
#include <string>

bool isRotation( std::string s1, std::string s2 ) 

Guess you like

Origin blog.csdn.net/it_xiangqiang/article/details/115252301