- 博客(2)
- 资源 (1)
- 收藏
- 关注
转载 堆排序
堆排序#include <stdio.h>// 分类 -------------- 内部比较排序// 数据结构 ---------- 数组// 最差时间复杂度 ---- O(nlogn)// 最优时间复杂度 ---- O(nlogn)// 平均时间复杂度 ---- O(nlogn)// 所需辅助空间 ------ O(1)// 稳定性 ------------ 不稳定void Swap
2017-08-26 18:46:57 195
原创 [Leetcode] Container With Most Water 能装最大水的容量
class Solution {public: int maxArea(vector& height) { int res = 0; int n = height.size(); int l = 0, r = n - 1; while (l < r) { res = max(res, min(height[l], height[r])*(r - l)); if
2016-07-15 11:03:42 196
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人