977. Squares of a Sorted Array有序數組的平方

網址:https://leetcode.com/problems/squares-of-a-sorted-array/ 雙指針法 把左端的元素和右端的元素比較後挑出絕對值大的,將其平方放入ans中,並且將指針往中間移動 不斷循環上述過程,直至兩指針重合。注意處理重合位置 最後將 ans 通過 reverse 反轉一下就可以了 class Solution { public: vector<
相關文章
相關標籤/搜索