reading note 2

2024-05-24 19:32
文章标签 note reading

本文主要是介绍reading note 2,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

//longest consecutive sequence
//given an unsorted array of integers, find the length of the longest 
//consecutive elements sequence. 
//先排序,然后求解时间复杂度o(nlogn)
//your algorithm should be run in o(n) complexity==>哈希表
//space complexity o(n)
int longestconsecutive(const vector<int>& nums){
unordered_map<int,bool> used;
for(auto i : nums) used[i] = false;
int longest = 0;
for(auto i : nums){
if(used[i]) continue;
int length = 1;
used[i] = true;
for(int j = i + 1; used.find(j) != used.end(); ++j){
used[j] = true;
++length;
}
for(int j = i - 1; used.find(j) != used.end(); --j){
used[j] = true;
++length;
}
longest = max(longest, length);
}
return longest;
}
//longest consecutive sequence
//time complexity o(n) space complexity o(n)
int longestconsecutive(vector<int>& nums){
unordered_map<int, int> map;
int size = nums.size();
int l = 1;
for(i = 0;i < size; i++){
if(map.find(nums[i]) != map.end()) continue;
map[nums[i]] = 1;
if(map.find(nums[i] - 1) != map.end()){
l = max(l,mergecluster(map,nums[i] - 1,nums[i]));
}
if(map.find(nums[i] + 1) != map.end()){
l = max(l,mergecluster(map,nums[i],nums[i] + 1));
}
}
return size == 0 ? 0 : 1;
}


int mergecluster(unordered_map<int,int>& map, int left, int right){
int upper = right + map[right] - 1;
int lower = left - map[left] + 1;
int length = upper - lower + 1;
map[upper] = length;
map[lower] = length;
return length;
}


// given an array of integers, find two numbers such that they add up to a 
//specific target number, the function twosum should return indices of the 
//two numbers such that they add up to the target, where index1 must be less
//than index2, please note that your returned answers(both index1 and index2)
//are not zero-based
//you may assume that each input would have exactly one solution
//方法1:暴力,复杂度o(n^2),超时
//方法2:hash,用一个哈希表,存储每个数对应的下标,复杂度o(n);
//time complexity o(n) space complexity o(n)
vector<int> twosum(vector<int>& nums, int target){
unordered_map<int,int> mapping;
vector<int> result;
for(int i=0; i < nums.size();i++){
mapping[nums[i]] = i;

for(int i=0;i < nums.size();i++){
const int gap = target - nums[i];
if(mapping.find(gap) != mapping.end() && mapping[gap] > i){
result.push_back(i+1);
result.push_back(mapping[gap]+1);
break;
}
}
return result;
}

这篇关于reading note 2的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/999321

相关文章

(南京观海微电子)——GH7006 Application Note

Features ⚫ Single chip solution for a WXGA α-Si type LCD display ⚫ Integrate 1200 channel source driver and timing controller ⚫ Display Resolution: ◼ 800 RGB x 480 ◼ 640 RGB x 480 ⚫ Display int

chapter06 面向对象基础 知识点Note

文章目录 前言类的设计 属性和行为对象的内存解析 (堆 栈 方法区)类的成员之一 变量(属性) field类的成员之二 方法 method对象数组方法重载 overload可变个数的形参 语法糖方法的值传递机制递归关键字package importMVC设计模式import导入面向对象特征之一 封装类的成员之三 构造器JavaBeanUML类图 前言 ` 面向对象封装 面向

Cmake note

cmake 指定交叉编译工具 指定install安装目录 $CC=arm-linux-uclibcgnueabi-gcc cmake -DCMAKE_INSTALL_PREFIX=./output . $make $make install 删除camke cache文件: find . -iname ‘cmake’ -not -name CMakeLists.txt -exec rm -rf

chapter01 Java语言概述 知识点Note

JavaSE JavaEE JavaME 大数据 Java基础常用技术栈 mysql JDBC SSM spring+spring mvc+mybatis Linux nacos Hadoop Flink JAVA EE 消息队列 rabbitMQ docker 数据库 redis spring boot springcloud ssh struts + spring + hiber

【HDU】4990 Reading comprehension 等比数列:两层快速幂

传送门:【HDU】4990 Reading comprehension 题目分析:首先根据题目意思可以很容易找到一个等比数列: 当n%2==1时,f(n) = 1 + 2^2 + 2^4 + ... + 2^(n-1) 当n%2==0时,f(n) = 2*f(n-1)。 接下来可以构造矩阵用矩阵快速幂求,也可以像我一样用两层快速幂求。(比赛的时候没想到用矩阵快速幂= =) 当n%2

chapter03 流程语句 知识点Note

@TOC 分支结构if-else 和 switch-case switch(表达式){case 常量值1:语句块1;//break;case 常量值2:语句块2;//break; // ...[default:语句块n+1;break;]} switch-case 执行过程: 第1步:根据switch中表达式的值,依次匹配各个case。如果表达式的值等于某个case中的常量值,则执行对

work note

1:  sum_total 是什么意思?  没有百度出来 见proce:  rptMohthCdr

note-Redis实战3 核心-数据安全与性能保障

助记提要 快照持久化的作用和缺点Redis创建快照的时机AOF文件同步的三种配置AOF文件重写的方式Redis复制的配置项和控制命令Redis复制过程 5步Redis主从链确认数据写入从服务器硬盘故障处理的两步Redis事务命令 5个Redis事务的特点 3点非事务型流水线使用性能测试工具评估客户端的性能 4章 数据安全与性能保障 持久化和复制 故障恢复 事务和流水线 4.1 快照持久

study note of CCS

Notes of DSP learning 每个CCS的project工程都包括哪些东西: Src:每个Project里面会有一个src的文件夹,这个文件夹里面是一些.c和.asm的文件,个人理解就是一些函数的实现,自己写代码的时候调用的函数就是在这些.C的文件里面的,这些.C和.asm的文件可以在CCS的安装目录的\TI\controlSUITE\device_support\f2802x\v

vim note(4)

:new 文件名.后缀 新建文件。 :e 文件名 打开文件。 :w 文件名.txt  保存文件。 :wq 保存并退出。 :x 退出,如果文件更改则保存