360 Sort Transformed Array
Previous350 Intersection of Two Arrays IINext395 Longest Substring with At Least K Repeating Characters
Last updated
Was this helpful?
Last updated
Was this helpful?
Given a sorted array of integersnumsand integer valuesa,bandc. Apply a quadratic function of the form f(x) =ax2+bx+c to each elementxin the array.
The returned array must be in sorted order.
Expected time complexity:O(n)
Example:
(1) Two Pointers
Two Pointers: 时间复杂度O(n), 空间复杂度O(n)