学到一种新的将数组reverse的方式。
while(start<end) {
temp = array[start];
array[start++] = array[end];
array[end--] = temp;
}
学到一种新的将数组reverse的方式。
while(start<end) {
temp = array[start];
array[start++] = array[end];
array[end--] = temp;
}
本文标题:541. Reverse String II
本文链接:https://www.haomeiwen.com/subject/mkitzttx.html
网友评论