#include<iostream> using namespace std; void inverse(char*p){ //*p = 'http' ; /* 算法原理: 将‘http’拆分成‘h’‘t’‘t’‘p’判断是否为空字符,不为空则继续递归进行比较, 比较完之后在通过 inverse(p + 1); printf("%c", *p); 逐个进行打印 */ if (*p == '