reading note 1

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

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

//判断两个浮点数a和b是否相等
a == b ====> fabs(a-b) < 1e-9
//判断一个整数是否为奇数(x可能是负数)
x % 2 ==1 =====>x % 2 != 0
//char的值作为数组下标(char可能是负数)
先强制转型为unsigned char,再用作下标
//vector和string性能优先于动态分配的数组
vector<vector<int> > ary(row_num,vector<int>(col_num,0));
//使用reserve来避免不必要的重新分配


线性表====>数组,单链表,双向链表
// remove duplicates from sorted array
//时间复杂度o(n),空间复杂度o(1)
int removeduplicates(vector<int>& nums){
if(nums.empty()) return 0;
int index = 0;
for(int i=1;i<nums.size();i++){
if(nums[index] != nums[i])//不相等时赋值
nums[++index] = nums[i];
}
return index + 1;
}
//使用STL,时间复杂度o(n),空间复杂度o(1)
int removeduplicates(vector<int>& nums){
return distance(nums.begin(),unique(nums.begin(),nums.end());
}
//使用STL,时间复杂度o(n),空间复杂度o(1)
int removeduplicates(vector<int>& nums){
return distance(nums.begin(),removeduplicates(nums.begin(),nums.end(),nums.begin());
}
template<typename init, typename outit>
outit removeduplicates(init first, init last, outit output){
while(first != last){
*output++ = *first;
first = upper_bound(first,last,*first);
}
return output;
}


//remove duplicates from sorted array II
//时间复杂度o(n),空间复杂度o(1)
int removeduplicates(vector<int>& nums){
if(nums.size() <= 2) return nums.size();
int index = 2;
for(int i=2;i<nums.size();i++){
if(nums[i] != nums[index - 2])
nums[index++] = nums[i];
}
return index;
}
//时间复杂度o(n),空间复杂度o(1)
int removeduplicates(vector<int>& nums){
const int n = nums.size();
int index = 0;
for(int i=0;i<n;++i){
if(i>0 && i<n-1 && nums[i] == nums[i-1] && nums[i] == nums[i+1])
continue;
nums[index++] = nums[i];
}
return index;
}


//search in rotated sorted array
//suppose a sorted array is rotated at some pivot unknown to you beforehand
//you are given a target value to search, if found in the array return its
//index, otherwise return -1, you may assume no duplicates exists in the array
//二分查找,注意边界的确定
//时间复杂度o(logn),空间复杂度o(1)
int search(const vector<int>& nums, int target){
int first = 0, last = nums.size();
while(first ! = last){
const int mid = first + (last - first) / 2;
if(nums[mid] == target)
return mid;
if(nums[first] <= nums[mid]){
if(nums[first] <= target && target < nums[mid])
last = mid;
else 
first = mid + 1;
}else{
if(nums[mid] < target && target <= nums[last-1])
first = mid + 1;
else
last = mid;
}
}
return -1;
}
//search in rotated sorted array II
//时间复杂度o(n),空间复杂度o(1)
bool search(const vector<int>& nums, int target){
int first = 0, last = nums.size();
while(first != last){
const int mid = first + (last - first) / 2;
if(nums[mid] == target)
return true;
if(nums[first] < nums[mid]){
if(nums[first] <= target && target < nums[mid])
last = mid;
else
first = mid + 1;
}else if(nums[first] > nums[mid]){
if(nums[mid] < target && target <= nums[last-1])
first = mid + 1;
else
last = mid;
}else  //skip duplicate one
first++;
}
return false;
}


//There are two sorted arrays A and B of size m and n respectively. Find the 
//median of the two sorted arrays. The overall run time complexity should be
//o(log(m+n))
//如果是要求time complexity o(m+n)的话,只要merge两个数组,然后求第k大element
//采用递归函数,终止条件如下
// 当A或者B为空时,直接返回B[k-1]或者A[k-1]
// 当k=1时,返回min(A[0],B[0])
// 当A[k/2-1] == B[k/2-1]时,返回A[k/2-1] 或 B[k/2-1]
//   median of two sorted arrays time complexity o(log(m+n)) 
//   space complexity o(log(m+n))
double findmediansortedarrays(const vector<int>& A, const vector<int>& B){
const int m = A.size();
const int n = B.size();
int total = m + n;
if(total & 0x1)
return find_kth(A.begin(),m,B.begin(),n,total / 2 + 1);
else
return (find_kth(A.begin(),m,B.begin(),n,total / 2) + find_kth(A.begin(),
m,B.begin(),n,total / 2 + 1)) / 2.0;
}
static int find_kth(std :: vector<int> :: const_iterator A, int m, 
std :: vector<int> :: const_iterator B,int n, int k){
//always assume that m is equal or smaller than n
if(m > n) return find_kth(B,n,A,m,k);
if(m == 0) return *(B+k-1);
if(k == 1) return min(*A,*B);
//divide k into two parts
int ia = min(k / 2, m), ib = k - ia;
if(*(A + ia -1) < *(B + ib -1))
return find_kth(A + ia, m - ia, B, n, k - ia);
else if(*(A + ia -1) > *(B + ib -1))
return find_kth(A, m, B + ib, n - ib, k - ib);
else
return A[ia-1];
}

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



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

相关文章

(南京观海微电子)——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 退出,如果文件更改则保存