You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- If `N <= 0` or `order == 0.0`, both functions return `x` unchanged.
117
117
- The algorithm distinguishes between `-0` and `+0`. When sorted in increasing order, `-0` is sorted before `+0`. When sorted in decreasing order, `-0` is sorted after `+0`.
118
118
- The algorithm sorts `NaN` values to the end. When sorted in increasing order, `NaN` values are sorted last. When sorted in decreasing order, `NaN` values are sorted first.
119
-
- The algorithm has space complexity `O(1)` and time complexity `O(N log2 N)`.
120
119
- The input strided array is sorted **in-place** (i.e., the input strided array is **mutated**).
0 commit comments