自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 每日一题--LeetCode.15

题目见链接: 力扣https://leetcode-cn.com/problems/3sum/ 提交代码 class Solution { public: vector<vector<int>> threeSum(vector<int>& nums) { int n = nums.size(); if(n<3){ return {}; } set&

2021-12-30 17:04:01 428

原创 每日一题--LeetCode203

题目见链接: 力扣https://leetcode-cn.com/problems/remove-linked-list-elements/ 提交代码: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(int x) : val

2021-12-29 11:52:43 213

翻译 C++ 优先队列(priority_queue)用法

A priority queue is a container adaptor that provides constant time lookup of the largest (by default) element, at the expense of logarithmic insertion and extraction. 优先队列作为一种常用的容器,可以提供极值的快速查找功能。插入和抽取操作的消耗都是对数级别的。 优先队列也可以看作是最大堆或者最小堆的具体实现,所以该数据结构自带的to..

2021-12-24 20:00:00 944

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除