回文數(shù).png 思路1: 1.小于0 --->非回文數(shù) 2.字符串反轉后,首位為0,且長度不為1 --->非回文數(shù) 3.反轉后字符串 == 反轉前字符串 --->回文數(shù) pass.png 字符逆轉.png 思路2: