Leetcode 442 划水记录05

题目:
**给定一个整数数组 a,其中1 ≤ a[i] ≤ n (n为数组长度), 其中有些元素出现两次而其他元素出现一次。

找到所有出现两次的元素。

你可以不用到任何额外空间并在O(n)时间复杂度内解决这个问题吗?

示例:

输入:
[4,3,2,7,8,2,3,1]

输出:
[2,3]**

看题目条件给的数据大小我就想用计数排序,但是怎么不申请额外空间呢?
其实完全可以利用每个元素的高位数据保存信息. 但是要确定要保存的信息的范围大小
比如你保存的是1-100 那你得给高8位留下来保存数据 底24位用来保存这个位置真实的数据值
leetcode上跑了还不错

int* findDuplicates(int* nums, int numsSize, int* returnSize)
{
    //把每个元素的高16位和低16位分别保存2个信息点就可以了
    for (int m=0;m<numsSize;m++)
    {
        //每个元素的第16位才是其真正的值 因为高16位可能有其他值
        int realvalue = nums[m] &65535;//
        int high16 = nums[realvalue-1] >> 16;   //当前的数字  //取下高16位
        int g16 = high16; //如果不是空
        g16++;
        nums[realvalue -1] = (nums[realvalue - 1]&65535) | (g16<<16);
    }
    //申请额外空间保存返回结果这个应该不算额外空间吧
    int *result = malloc(sizeof(int)*numsSize);
    int cc = 0;
    for (int m = 0; m < numsSize; m++)
    {
        int high16 = (nums[m]>>16);
        if (2 == high16)
        {
            result[cc++] = m + 1;
        }
    //  printf("%d 出现%d次\n", m + 1, high16);
    }
    *returnSize = cc;
    return result;
}

时间

原文地址:http://blog.51cto.com/3458905/2317640

时间: 2024-11-05 01:57:14

Leetcode 442 划水记录05的相关文章

Leetcode刷题记录[python]——344 Reverse String

一.前言 不是计算机专业出身,却有一颗程序猿的心. 昨日开始leetcode第一次刷题,选择了菜鸟方式,从AC率最高且难度为Easy的题开始,不管题是简单还是难,都想做个记录,既是方便以后回顾,又是以此作为一个激励,督促自己每天都能有所进步. 二.题344 Reverse String Write a function that takes a string as input and returns the string reversed. class Solution(object): def

【LeetCode在线编程记录-1】字符串按单词反转

写在前面 LeetCode(地址:https://oj.leetcode.com/)是一个在线编程网站,题目经典,测试用例完备,共计157道算法类的题目.之后我会记录我的一些练习题目,有些答案是我自己原创的(说是原创,也很可能是之前在别的地方看到的而已),有些是从讨论区看到的,我都会明确标注出处. Reverse Words in a String Given an input string, reverse the string word by word. For example, Given

LeetCode-62 划水记录 04

题目一看;感觉可以用回溯法 就是从(0.0)开始 走到下一步 再走下一步 走到尽头了 向右边走 到尽头了回去上一个格子 再从上一个格子换一个方向 走 因为只能走2个方向 如果一个格子2个方向都走完了 就又回到上一个通过这样的办法 可以列出所有路径 并且找到所有的路径数之和.回溯法递归实现:代码如下: //递归版 void uniquePaths2(int m, int n,int H,int L,int *res) { if (m == H && n == L) { (*res)++; r

近日LeetCode算法(记录)

近日LeetCode算法 前言:最近刷了好多leetcode算法题,大家知道,程序=数据结构+算法,由此可见,算法真的是很重要的呢.闲话少谈,切入正题,来看看小编觉得有点意思的5题算法题吧... 1. LeetCode 73:矩阵置零 难度等级:中等 题目 给定一个 m x n 的矩阵,如果一个元素为 0,则将其所在行和列的所有元素都设为 0. 示例 解题思路 这是一个二维数组,我们只需要遍历一遍这个二维数组,把元素为0的那个位置所在的行与列分别标记起来,可以放在一个HashSet中,我们都知道

LeetCode 442. Find All Duplicates in an Array (在数组中找到所有的重复项)

Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements that appear twice in this array. Could you do it without extra space and in O(n) runtime? Example: Input: [4,3,2,7,

Leetcode 刷题记录 &amp; VLIS学长们的战绩

November 28, 2014 Leetcode全垒打! 以此纪念.找工作的路还是很漫长.继续奋斗.有学长学姐们的督促,必须更加努力. http://mcds.cs.cmu.edu/?q=node/26 2013 Chun Chen (Twitter, San Francisco, CA) Yiwen Chen (GOOGLE, Mt. View, CA) Mengwei Ding (GOOGLE, Mt. View, CA) Ge Gao (GOOGLE, Mt. View, CA) Yu

Leetcode刷题记录[python]——349 Intersection of Two Arrays

一.前言 做了两题才慢慢摸清了leetcode的操作. 二.题349 Intersection of Two Arrays Given two arrays, write a function to compute their intersection. class Solution(object): def intersection(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int]

Leetcode刷题记录[python]——283 Move Zeroes

一.前言 题是上周五做的,开始思路有点问题,考虑不全,导致submit了3次才AC. 二.题283 Move Zeroes Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. For example, given nums = [0, 1, 0, 3, 12], after call

leetcode刷题记录(2)

301. Remove Invalid Parentheses Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results. Note: The input string may contain letters other than the parentheses ( and ). Examples: "()())()&q