鱼C论坛

 找回密码
 立即注册
查看: 2110|回复: 0

[技术交流] LeetCode 面试题57 - II. 和为s的连续正数序列

[复制链接]
发表于 2020-3-6 11:33:51 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
传送门:https://leetcode-cn.com/problems ... ng-shu-xu-lie-lcof/

双指针
  1. class Solution {
  2. public:
  3.     vector<vector<int>> ans;

  4.     void add_ans(int a, int b)
  5.     {
  6.         vector<int> temp;
  7.         while (a <= b) temp.push_back(a++);
  8.         ans.push_back(temp);
  9.     }

  10.     vector<vector<int>> findContinuousSequence(int target) {
  11.         int limit = (target + 1) / 2;

  12.         int l = 1, sum = 0;
  13.         for (int r = 1 ; r <= limit; ++r)
  14.         {
  15.             sum += r;

  16.             while (sum > target) sum -= l++;

  17.             if (sum == target) add_ans(l, r);
  18.         }

  19.         return ans;
  20.     }
  21. };
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-7-6 11:56

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表