首页
沸点
课程
数据标注
HOT
AI Coding
更多
直播
活动
APP
插件
直播
活动
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
登录
注册
算法
已注销
创建于2023-09-09
订阅专栏
学习数据结构和算法
暂无订阅
共5篇文章
创建于2023-09-09
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
最长不重复连续子序列
```c++ #include using namespace std; const int N = 100010; int main(){ int n; cin >> n; int a[N],s[N
高精度除法
--- highlight: an-old-hope --- ```c++ #include #include #include using namespace std; vector div(vec
高精度乘法
--- highlight: srcery --- ```c++ #include #include using namespace std; //高精度乘法 vector mul(vector A,
C++高精度减法
--- highlight: isbl-editor-dark --- ```c++ #include #include using namespace std; //高精度减法 //判断A, B大小
高精度加法
向量(Vector)是一个封装了动态大小数组的顺序容器(Sequence Container)。跟任意其它类型容器一样,它能够存放各种类型的对象。可以简单的认为,向量是一个能够存放任意类型的动态数组。