The Solution to Leetcode 137 Single Number II

本文介绍了一种算法,该算法能在线性时间内找出数组中仅出现一次的整数,而其他所有元素都恰好出现了三次。通过排序并遍历数组来实现这一目标,特别考虑了数组长度为1、2或3的特殊情况。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Question:

Given an array of integers, every element appears three times except for one, which appears exactly once. Find that single one.

Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?

思路:将上一道题改动一下,i=i+2变成i=i+3就行了。同时要判断数组元素个数为1,2,3,的时候的情况。

Answer:

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        int i=0;
        if(nums.size()==1)
           return nums[i];
        if(nums.size()==2)
           return NULL;
        if(nums.size()==3)
           return NULL;
        sort(nums.begin(), nums.end());
        for(i==0;i<nums.size();i=i+3)
        {
            if(nums[i]!=nums[i+1])
             return nums[i];
        }
    }
};

run code results:

Your input
[1 1 0 1 9 8 0 8 9 0 9 8 4 7 5 7 5 7 5]
Your answer
4
Expected answer
4


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值