whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共2篇)
堆排序样例
一、设计特殊样例+常规样例 3333 41314 二、AC代码 #include<bits/stdc++.h> using namespace std; int n,k; vector<int> solve; int main() { while( ~scanf("...
heap
2021-03-15
0
599
1046. 最后一块石头的重量
1046. 最后一块石头的重量 用STL的堆暴力的解法 class Solution { public: int lastStoneWeight(vector<int>& stones) { int len=stones.size(); ...
heap
2020-12-16
0
512