vector
-
c++xx 秋招学习STL库 (一)【vector】
c++xx 秋招学习STL库 (一) vector类 主要针对一些编程时使用发现的一些问题与思考进行记录 Vector的初始化 一维数组 //using namespace std…
-
LeetCode 90 Subsets II 回溯
Given an integer array nums that may contain duplicates, return all possible subsets (the …
-
LeetCode 797 All Paths From Source to Target 回溯
Given a directed acyclic graph (DAG) of n nodes labeled from 0 to n – 1, find all possible…
-
LeetCode 239 Sliding Window Maximum 单调队列 [Hard]
You are given an array of integers nums, there is a sliding window of size /(k/) which is …
-
AcWing 791. 高精度加法
观察题目 第一眼看题:这不就是大淼题 /(/text {A + B}/) 吗? 再一看,看到数据范围 /(1 /leq 整数长度 /leq 100000/),很显然,/(C++/)…
-
AcWing 792. 高精度减法
算法思路 与高精度加法大致相同,同样运用了“列竖式”的思想。 当然,加法中的“进位操作”要改成减法中的“退位操作”。 具体过程如下: 从最低位开始,用被减数的这一位减去减数的这一位…
-
算法学习之路 高精度算法
//高精度加法模板 #include<bits/stdc++.h>using namespace std;vector<int>add(vector&l…
-
day30
1.剑指 Offer 17. 打印从 1 到最大的 n 位数 1)直接列举(执行用时比分治短) 1 class Solution { 2 public: 3 vector<…
-
day30
1.剑指 Offer 17. 打印从 1 到最大的 n 位数 1)直接列举(执行用时比分治短) 1 class Solution { 2 public: 3 vector<…
-
剑指 Offer 57 – II. 和为s的连续正数序列
剑指 Offer 57 – II. 和为s的连续正数序列 输入一个正整数 target ,输出所有和为 target 的连续正整数序列(至少含有两个数)。 序列内的数字…