main.cpp 349 B

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