【C++刷题】优选算法——双指针

  1. 移动零
void moveZeroes(vector<int>& nums)
{size_t  front = 0;size_t back = 0;while(back < nums.size() && nums[back] != 0){++back;}front = back++;while(back < nums.size()){if(0 == nums[back]){++back;}else{swap(nums[front++], nums[back++]);     }}
}
  1. 复写零
    先找到最后一个被“复写”的数,然后从后向前完成“复写”操作。同时要注意处理一下边界情况。
void duplicateZeros(vector<int>& arr)
{int front = 0;int back = -1;while(true){if(0 == arr[front]){back += 2;}else{back += 1;}if(back == arr.size()){--back;arr[back--] = 0;--front;break;}if(back == arr.size() - 1){break;}++front;}while(front >= 0){if(arr[front] == 0){arr[back--] = 0;arr[back--] = 0;--front;}else{arr[back--] = arr[front--];}}
}
  1. 快乐数
// 方法一
bool isHappy(int n)
{unordered_set<int> res({n});int num = 0;while(true){while(n != 0){num += pow((n % 10), 2);n /= 10;}if(num == 1){return true;}else if(res.find(num) != res.end()){return false;}else{res.insert(num);}n = num;num = 0;}
}
// 方法二
int Run(int num)
{int ret = 0;while(num != 0){ret += pow((num % 10), 2);num /= 10;}return ret;
}bool isHappy(int n)
{int slow = n;int fast = n;while (true){slow = Run(slow);fast = Run(fast);fast = Run(fast);if (slow == fast && fast == 1){return true;}else if (slow == fast){return false;}}
}
  1. 盛最多水的容器
int maxArea(vector<int>& height)
{size_t left= 0;size_t right = height.size() - 1;size_t ret = (right - left) * min(height[left], height[right]);size_t tmp = 0;size_t area = 0;do{if(height[left] < height[right]){tmp = height[left];while(left < right && height[++left] <= tmp);}else{tmp = height[right];while(left < right && height[--right] <= tmp);}if(left < right){area = (right - left) * min(height[left], height[right]);if(area > ret) ret = area;}}while(left < right);return ret;
}
  1. 有效三角形的个数
    利用单调性,先固定最大的数,在最大的数的左区间内使用双指针算法。
inline bool check(int side1, int side2, int side3)
{return (side1 + side2 > side3);
}
int triangleNumber(vector<int>& nums)
{if(nums.size() < 3) return 0;sort(nums.begin(), nums.end());size_t max_index = nums.size() - 1;size_t left_index = 0;size_t right_index = max_index - 1;int ret = 0;while(max_index > 1){while(left_index < right_index){if(check(nums[left_index], nums[right_index], nums[max_index])){ret += (right_index - left_index);--right_index;}else{++left_index;}}--max_index;left_index = 0;right_index = max_index - 1;}return ret;
}
  1. 查找总价格为目标值的两个商品
vector<int> twoSum(vector<int>& price, int target)
{size_t left = 0;size_t right = price.size() - 1;vector<int> v(2);while(left < right){if(price[left] + price[right] < target){++left;}else if(price[left] + price[right] > target){--right;}else{v[0] = price[left];v[1] = price[right];break;}}return v;
}
  1. 三数之和
    注意对去重的处理(跳过重复元素)。
vector<vector<int>> threeSum(vector<int>& nums)
{vector<vector<int>> vv;sort(nums.begin(), nums.end());size_t max_index = nums.size() - 1;size_t left_index = 0;size_t right_index = max_index - 1;while(max_index > 1){while(left_index < right_index){if(nums[left_index] + nums[right_index] + nums[max_index] > 0){while(left_index < --right_index && nums[right_index] == nums[right_index + 1]);}else if(nums[left_index] + nums[right_index] + nums[max_index] < 0){while(++left_index < right_index && nums[left_index] == nums[left_index - 1]);}else{vv.push_back({nums[left_index], nums[right_index], nums[max_index]});while(left_index < --right_index && nums[right_index] == nums[right_index + 1]); // or ++left_index}}while(--max_index > 1 && nums[max_index] == nums[max_index + 1]);left_index = 0;right_index = max_index - 1;}return vv;
}
  1. 四数之和
    结合三数之和解题。
long long Sum(long long num1, long long num2, long long num3)
{return num1 + num2 + num3;
}
void threeSum(vector<vector<int>>& vv, vector<int>& nums, size_t max_index, int max, int target)
{size_t left_index = 0;size_t right_index = max_index - 1;while(max_index > 1){while(left_index < right_index){if(Sum(nums[left_index], nums[right_index], nums[max_index]) > target){while(left_index < --right_index && nums[right_index] == nums[right_index + 1]);}else if(Sum(nums[left_index], nums[right_index], nums[max_index]) < target){while(++left_index < right_index && nums[left_index] == nums[left_index - 1]);}else{vv.push_back({nums[left_index], nums[right_index], nums[max_index], max});while(left_index < --right_index && nums[right_index] == nums[right_index + 1]);}}while(--max_index > 1 && nums[max_index] == nums[max_index + 1]);left_index = 0;right_index = max_index - 1;}
}
vector<vector<int>> fourSum(vector<int>& nums, int target)
{   vector<vector<int>> vv;if(nums.size() < 4) return vv;sort(nums.begin(), nums.end()); // 排序size_t max_index = nums.size() - 1; // 固定第4个数while(max_index > 2){threeSum(vv, nums, max_index - 1, nums[max_index], target - nums[max_index]);while(--max_index > 2 && nums[max_index] == nums[max_index + 1]);}return vv;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/702471.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Sora Text to Video 转换过程和技术要素的技术原理详细描述

转换过程&#xff1a; 初始化阶段&#xff1a;Sora 的转换过程从一个随机噪声图像开始。这个噪声图像是通过随机数生成器产生的&#xff0c;它代表了视频数据的初始状态&#xff0c;其中包含了大量的随机性和不确定性。 神经网络处理&#xff1a;这个噪声图像随后被送入一个预…

python 3.11中安装sympy(符号工具包)

1.python环境&#xff1a; 2.安装遇到问题&#xff1a; … 3.升级pip cmd命令行中&#xff0c;执行如下命令&#xff1a; python.exe -m pip installl --upgrade pip 4.再次安装sympy cmd命令行中&#xff0c;执行如下命令&#xff1a; pip install sympy 5.简单应用 对…

【坑】SpringBoot项目打包后的jar包非常小,只有4KB

一、SpringBoot项目打包后的jar包非常小&#xff0c;只有4KB? 1.1、解决方法 pom.xml中添加如下配置 <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId>&l…

排列组合简单详解(附10题)(会员版)

非会员,不用注册会员也能看! https://blog.csdn.net/Runcode8/article/details/136274861https://blog.csdn.net/Runcode8/article/details/136274861 一、认识C,P,A: A.排列 A(x,y)=(x!)/[(x-y)!]=x(x-1)...(x-y+1) P.排列 P(x,y)=A(x,y) C.组合 C(x,…

Flink 1.11.0 版本介绍

Flink 1.11.0 发布于 2020 年,引入下面的新特性: 为了缓解 backpressure 下的 checkpointing 性能问题引入 unaligned checkpoints统一 Watermark Generator接口引入 Data Source API为 kubernates 引入新的部署模式:application modeUnaligned Checkpoints 触发一次 check…

针对无法确定连接参数的网口通讯PLC采集方案

年前碰到了一个需求&#xff0c; 需要针对倍福PLC进行数据采集&#xff0c; 搞定了PLC通讯协议后&#xff0c; 最大的问题出现了&#xff0c; 我们不知道PLC的密码&#xff0c; 没办法进入到PLC查询到点位&#xff0c; 而且也没办法对PLC设置路由&#xff0c; 导致没有办法连上…

构建生物医学知识图谱from zero to hero (2):文献抽取

我们选取一篇文献,将文献PDF转换成图片,然后采用pytesseract 实现图片文字识别。 import requests import pdf2image import pytesseractpdf = requests.get(https://arxiv.org/pdf/2110.03526.pdf) doc = pdf2image.convert_from_bytes(pdf.content)# Get the article text…

Linux笔记之LD_LIBRARY_PATH详解

Linux笔记之LD_LIBRARY_PATH详解 code review! 文章目录 Linux笔记之LD_LIBRARY_PATH详解1.常见使用命令来设置动态链接库路径2.LD_LIBRARY_PATH详解设置 LD_LIBRARY_PATH举例注意事项 3.替代方案使用标准路径编译时指定链接路径优先使用 rpath 还是 runpath&#xff1f;注意…

LeetCode 每日一题 2024/2/19-2024/2/25

记录了初步解题思路 以及本地实现代码&#xff1b;并不一定为最优 也希望大家能一起探讨 一起进步 目录 2/19 590. N 叉树的后序遍历2/20 105. 从前序与中序遍历序列构造二叉树2/21 106. 从中序与后序遍历序列构造二叉树2/22 889. 根据前序和后序遍历构造二叉树2/23 2583. 二叉…

Spring Cloud学习

1、什么是SpringCloud Spring cloud 流应用程序启动器是基于 Spring Boot 的 Spring 集成应用程序&#xff0c;提供与外部系统的集成。Spring cloud Task&#xff0c;一个生命周期短暂的微服务框架&#xff0c;用于快速构建执行有限数据处理的应用程序。Spring cloud 流应用程…

2024.2.25

P1135 #include<iostream> #include<algorithm> #include<cstring> using namespace std; const int N 10010; int n, A, B; int evlt[N]; int res 1e9; bool st[N]; //存每层楼走没走过 //当前在x楼, 当前按了cnt次按钮 void dfs(int x, int cnt) …

瑞_23种设计模式_外观模式

文章目录 1 外观模式&#xff08;Facade Pattern&#xff09;1.1 介绍1.2 概述1.3 外观模式的结构 2 案例一2.1 需求2.2 代码实现 3 案例二3.1 需求3.2 代码实现 4 jdk源码解析 &#x1f64a; 前言&#xff1a;本文章为瑞_系列专栏之《23种设计模式》的外观模式篇。本文中的部分…

【Vuforia+Unity】AR02-长方体物体识别(Multi Targets)

1.创建模型 选择多维长方体图,这个长方体是生活中的真实物体的拍摄图,提前把6个面拍摄好并裁剪干净。 官网创建模型https://developer.vuforia.com/targetmanager/project/targets?projectId=0ddbb5c17e7f4bf090834650bbea4995&av=false 设置长宽高,这个长宽高需要…

学算法要读《算法导论》吗?

大家好&#xff0c;我是 方圆。这篇文章是我学习算法的心得&#xff0c;希望它能够给一些将要学习算法且准备要读大部头算法书籍的朋友一些参考&#xff0c;节省一些时间&#xff0c;也为了给经典的“黑皮书”祛魅&#xff0c;我觉得这些书籍在大部分互联网从业者心中已经不再是…

【JS解构】数组解构、对象解构

解构赋值语法是一种 Javascript 表达式 解构数组&#xff1a; // 解构数组&#xff1a; // 1.如果当前对应下标没值则是undefined // 2.如果解构时设置了默认值&#xff0c;例如 c55和d66&#xff0c; c对应下标有值时则使用该值&#xff0c;d对应的没值时使用默认值66; 默认值…

数组与指针相关

二级指针与指针数组 #include <stdio.h> #include <stdlib.h> int main() { // 定义一个指针数组&#xff0c;每个元素都是一个指向int的指针 int *ptr_array[3]; // 为指针数组的每个元素分配内存 ptr_array[0] malloc(2*sizeof(int)); ptr_array[1] m…

USB Micro引脚及相应原理图绘制

前言&#xff1a;博主为实现绘制USB Micro输入口原理图&#xff0c;首先在 GD32F103XX的数据手册中找到引脚的功能描述&#xff0c;找到USBDM与USBDP功能&#xff0c;分别为引脚PA11与引脚PA12。然后进行相应的原理图绘制。 * USBDM。USBDM 引脚是与通用串行总线 (Universal Se…

20210505-20240223 CSDN 1024天 创作纪念日

作为一个小白&#xff0c;我没想到自己在不知不觉间就走过了如此长久的一段旅程。恍然间&#xff0c;三年多的时光已经过去了。 机缘 我首次写博客是为了记录日常&#xff0c;分享生活。 在这1024天里&#xff0c;我做了一些记录和分享&#xff0c;特别是遇到一些有趣的、值得…

2024 年了,如何 0 基础开始学习 Vue ?

最近 5 个月&#xff0c;我都在忙着构建我的第一开源项目 HexoPress&#xff0c;这个项目是使用 Electron Vue 3 TypeScript 等技术实现的&#xff0c;一方面&#xff0c;我真的很需要一款合自己心意的博客编辑器&#xff0c;另一方面&#xff0c;我也是真心想学习 Electron …

面试经典150题【11-20】

文章目录 面试经典150题【11-20】388.O(1) 时间插入、删除和获取随机元素238.除自身以外数组的乘积134加油站135.分发糖果42. 接雨水13.罗马数字12.整数 转 罗马数字58.最后一个单词的长度14.最长公共前缀151.反转字符串中的单词 面试经典150题【11-20】 388.O(1) 时间插入、删…