码迷,mamicode.com
首页 >  
搜索关键字:erase    ( 674个结果
C++常问的Vector,map内存释放
#include <iostream>#include<string>#include <vector>#include <map>using namespace std; int main(){ vector<int> bgX{5, 10}; //方法1 bgX.erase(bgX.begin() ...
分类:编程语言   时间:2021-06-06 19:46:16    阅读次数:0
leetcode 146 LRU 缓存机制
简介 使用了C++自带的实现deque 和 unordered_map code class LRUCache { public: unordered_map<int, bool> map; unordered_map<int, int> mapV; deque<int> q; int capaci ...
分类:其他好文   时间:2021-05-24 13:58:51    阅读次数:0
16.8.2【set容器的大小和交换、插入和删除、查找和统计】
1 #include<iostream> 2 #include<cstdlib> 3 using namespace std; 4 #include<set> 5 6 7 /* 8 3.8.3 set容器大小和交换 9 10 size(); //返回容器中元素的数目 11 empty(); //判断 ...
分类:其他好文   时间:2021-05-24 06:33:00    阅读次数:0
Linux命令行退格键变成^H的解决方法
关于Linux命令行退格键变成^H的问题,有两种解决办法: 方法一:一次有效 在使用退格键(backspace)时,同时按住ctrl键。 方法二:永久有效 把 stty erase ^H 添加到.bash_profile中。 ...
分类:系统相关   时间:2021-05-24 05:12:52    阅读次数:0
向量容器(vector)
向量容器(vector)是一种顺序容器,是一块连续分配的内存,支持随机访问,从数据安排的角度来看,和数组及其相似,数组与vector的区别在于:数组是静态分配空间的大小,一旦分配,就不可以再改变了,例如,int a[6];而vector是动态分配内存,随机元素不断插入,它会按照自身的一套机制不断扩充 ...
分类:其他好文   时间:2021-05-24 04:46:45    阅读次数:0
[luogu P4705] 玩游戏
\(\text{Problem}:\)玩游戏 \(\text{Solution}:\) 要对 \(\forall k\in[1,t]\),求出: \[ f_{k}=\frac{1}{nm}\sum\limits_{i=1}^{n}\sum\limits_{j=1}^{m}(a_{i}+b_{j})^ ...
分类:其他好文   时间:2021-05-23 23:13:05    阅读次数:0
一文读懂C++ String类在算法竞赛中的常见用法
一文读懂C++ String类在算法竞赛中的常见用法 string 相较于C语言的字符数组可方便太多了,在算法竞赛中能大大节省我们的时间。以下是我在刷题中会使用到的常见String用法。注释都写好了。 #include <iostream> #include <string> using names ...
分类:编程语言   时间:2021-04-30 12:14:45    阅读次数:0
[CF997C] Sky Full of Stars
\(\text{Problem}:\)Sky Full of Stars \(\text{Solution}:\) 答案即总方案数减去没有一行或一列是同种颜色的方案数。 设 \(f_{i,j}\) 表示恰好有 \(i\) 行 \(j\) 列是同种颜色的方案数,\(g_{i,j}\) 表示钦定有 \( ...
分类:其他好文   时间:2021-04-28 11:55:09    阅读次数:0
Codeforces Round #568题解
第一次遇到有9题的div2。。。 A题 排序后,伸展两边 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pll; const int N=2e5+10; const i ...
分类:其他好文   时间:2021-04-06 15:06:31    阅读次数:0
顺序表
#include<stdio.h> #include<stdlib.h> #include<cstring> typedef int SLDataType; typedef struct SeqList { SLDataType* _data;/*需要动态开辟的数组*/ size_t _size;/ ...
分类:其他好文   时间:2021-04-02 13:28:47    阅读次数:0
674条   1 2 3 4 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!