// // Created by tangs on 2018/10/8. // #include <iostream> using namespace std; /** * 设单链表的表头指针为L,节点结构由data和next两个域组成,其中data域为字符型, * 试设计算法判断该链表的全部n个字符是否中心对称。例如xyx,xyyx都是中心对称。 * @return */ int main(){ return 0; }