Leetcode_hot100
简单模块 1、两数之和 简单题,用unordered_map<int,int> um;key为值,value为数组下标 遍历一遍,看um...
简单模块 1、两数之和 简单题,用unordered_map<int,int> um;key为值,value为数组下标 遍历一遍,看um...
vector 初始化 1 2 3 4 vector<int> a(10); //没有给出初值,其值是不确定的 vector<int> a(10,1); //定义了10个整型元素的向量,且给出每个元素的初值为1 vector<int> a(b); //用b向量来创建a向量...