一、判断回文单链表 二、优化空间复杂度 三、最后总结 我们之前有两篇文章写了回文串和回文序列相关的问题。 寻找 回文串的核心思想是从中心向两端扩展: string palindrome ( string & s , int l , int r ) { // 防止索引越界 while ( l >=...
Rotate Image 描述 分析 代码1 代码2 Rotate Image 描述 You are given an n × n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up:Could you do t...