15. 三数之和

题目描述

给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。

注意:答案中不可以包含重复的三元组。

例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],

满足要求的三元组集合为:

[
  [-1, 0, 1],
  [-1, -1, 2]
]

思路分析:

双指针思想,定位其中两个指针,根据和的大小来移动第三个指针。由于要求每个答案数组中的元素是升序排列的,所以在开始要对原数组进行排序,另外题目要求不能包含重复的答案数组,所以要有相应的去重操作。

具体代码

class Solution {
public:
    vector<vector<int>> threeSum(vector<int>& nums) {
        vector<vector<int>> res;
        if(nums.size() <= 2) {
            return res;
        }
        sort(nums.begin(), nums.end());
        for(int i = 0; i < nums.size() - 2; i++) {
            //每次固定指针i,移动指针j和k来寻找结果集
            int j = i + 1;
            int k = nums.size() - 1;
            while(j < k) {
                vector<int> curr;
                if(nums[i] + nums[j] + nums[k] == 0) {
                    curr.push_back(nums[i]);
                    curr.push_back(nums[j]);
                    curr.push_back(nums[k]);
                    res.push_back(curr);
                    ++j;
                    --k;
                    //相应的去重
                    while(j < k && nums[j - 1] == nums[j]) {
                        ++j;
                    }
                    while(j < k && nums[k] == nums[k + 1]) {
                        --k;
                    }
                    //如果当前三数之和偏小,让j右移
                } else if(nums[i] + nums[j] + nums[k] < 0) {
                    ++j;
                } else {
                   //反之,让k左移
                    --k;
                }
            }
            //对i同样需要相应的去重
            while(i < nums.size() - 1 && nums[i] == nums[i + 1]) {
                ++i;
            }
        }
        return res;
    }
};
### 回答1: Sure, here is how you can print 15 numbers in three rows in C language: ``` #include <stdio.h> int main() { int nums[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; int i; // print first row for (i = 0; i < 5; i++) { printf("%d ", nums[i]); } printf("\n"); // print second row for (i = 5; i < 10; i++) { printf("%d ", nums[i]); } printf("\n"); // print third row for (i = 10; i < 15; i++) { printf("%d ", nums[i]); } printf("\n"); return 0; } ``` This program will output the 15 numbers in three rows, with each row containing 5 numbers. ### 回答2: #include <stdio.h> int main() { int num[15] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; printf("按行输出15个数:\n"); for (int i = 0; i < 15; i += 3) { printf("%d %d %d\n", num[i], num[i+1], num[i+2]); } return 0; } 在上面的例子,首先定义了一个包含15个整数的数组num,并初始化为1到15的连续整数。然后使用for循环遍历数组,每次输出个元素。输出格式为每个元素之间用空格分隔,每输出完一行个数后换行。最终输出结果如下: 按行输出15个数: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ### 回答3: 在C语言,可以通过使用循环结构和条件语句来实现对15个数的按行输出。以下是一个可能的解决方案: ```c #include <stdio.h> int main() { int nums[15]; // 存储15个数的数组 int i; // 循环计数器 // 输入15个数 printf("请输入15个整数:\n"); for (i = 0; i < 15; i++) { scanf("%d", &nums[i]); } // 按行输出 printf("按行输出的结果为:\n"); for (i = 0; i < 15; i++) { // 每行输出个数 printf("%d ", nums[i]); // 每输出个数换行 if ((i + 1) % 3 == 0) { printf("\n"); } } return 0; } ``` 上述代码,首先定义了一个长度为15的整型数组`nums`用于存储输入的15个数。然后通过循环结构,利用`scanf`函数从用户处输入这15个数。 接着,使用循环结构和`printf`函数按行输出这15个数。在循环,每输出一个数后,根据`(i + 1) % 3 == 0`的条件判断,确定是否需要换行。 最终,将运行结果输出到终端上。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值