出现奇数次的数字_查找出现奇数次的数字

出现奇数次的数字

Problem statement

问题陈述

Given an array of positive numbers where all the numbers occur even number of times except only one number which occurs an odd number of times. We need to find the special number (number occurring an odd number of times in the array) using minimum time complexity and space.

给定一个正数数组,其中所有数字出现偶数次,只有一个数字出现奇数次。 我们需要使用最小的时间复杂度和空间来查找特殊数字(该数字在数组中出现奇数次)。

Solution

  1. There’s, of course, a brute force solution existing where you can just take each element and scan the rest of the array for finding an odd number of occurrence. But such brute force solution is not acceptable since it needs O(n2) time complexity.

    当然,有一个蛮力解决方案,您可以只获取每个元素并扫描数组的其余部分以查找奇数次出现的情况。 但是这种蛮力解决方案是不可接受的,因为它需要O(n 2 )时间复杂度。

  2. Hashtable can be considered as another technique for such problems. We can simply keep the counter for each element entered to the hash table and the element with an odd counter is the special element to be found. Though the time complexity is O(n), the creation of hashtable needs additional space.

    哈希表可以被视为解决此类问题的另一种技术。 我们可以简单地为输入到哈希表中的每个元素保留计数器,而具有奇数计数器的元素是要找到的特殊元素。 尽管时间复杂度为O(n) ,但哈希表的创建需要额外的空间。

  3. Needless to say, the hash table could have been taken as our efficient solution for this problem since lower time complexity. But there exists even simple and efficient solution which can be done by bitwise XORing operation. The algorithm is very simple:

    不用说,由于较低的时间复杂度,哈希表可以作为我们解决该问题的有效方法。 但是,甚至存在可以通过按位XORing操作完成的简单有效的解决方案。 该算法非常简单:

    • XOR operation for all the elements and the output will be the special number which has an odd number of occurrence.XOR操作,输出将是出现奇数的特殊数字。
    • A XOR A=0XOR A = 0 XORing for all elements as it occurs for an odd number of times.异或 ,因为它发生了奇数次。

Time complexity: O(n)

时间复杂度: O(n)

Space Complexity: O(1) (constant)

空间复杂度: O(1)(恒定)

C code for implementation

实现的C代码

#include<stdio.h>
#include<stdlib.h>
int specialNo(int a[], int n){
int x=0;
for(int i=0;i<n;i++){
//xoring all elements outputs the special number
x^=a[i];
}
//return the special number
return x;
}
int main(){
int x,count=0;
// array of positive no initialized to -1 for now
int a[20]={-1}; 
printf("enter positive numbers  ending with -1\n");
scanf("%d",&x);
// first no
a[0]=x;           
while(x!=-1){
scanf("%d",&x);
//from second no onwards
a[count+1]=x;  
count++;
}
// function to check duplicate exists or not
printf("\nthe special number occuring odd no of times is %d\n",specialNo(a,count)); 
return 0;
}

Output

输出量

enter positive numbers  ending with -1
1
2
3
2
4
1
4
3
5
3
5
-1
the special number occuring odd no of times is 3 

翻译自: https://www.includehelp.com/algorithms/find-the-number-occurring-an-odd-number-of-times.aspx

出现奇数次的数字

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

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

相关文章

linux——常用指令

指令功能ls列出当前目录下所有子目录和文件pwd显示当前目录的路径cd 目录名进入该目录cd …返回上一级目录touch 文件名创建一个文件mkdir 文件夹名创建一个文件夹rmdir 文件名与mkdir相对&#xff0c;删除一个文件夹&#xff0c;但必须拥有对当前目录进行操作的权限rm -r删除目…

js中div显示和隐藏钮为什么页面总是跳一下到最上面

<div class"menu_left"> <ul > <li id"t1" style"background-image:url(images/t2.gif);" > <a href"#" id"first" οnclick"infoList(first);" >中心动态</a><…

ORA-00911:无效字符 错误及解决

今天写了一局sql语句&#xff0c;用来向Oracle数据库插入一条数据。我是这样写的……String sql "insert into userinfo(usermail,usernickname,userpassword)values(?,?,?);";结果出现ORA-00911:无效字符&#xff0c;解决方法是&#xff1a;………去掉sql语句最…

第 5-2 课:线程池——ThreadPoolExecutor + 面试题

线程池介绍 线程池(Thread Pool):把一个或多个线程通过统一的方式进行调度和重复使用的技术,避免了因为线程过多而带来使用上的开销。 为什么要使用线程池? 可重复使用已有线程,避免对象创建、消亡和过度切换的性能开销。避免创建大量同类线程所导致的资源过度竞争和内…

创建动画

1.动画&#xff08;头部-开始动画&#xff09; [UIView beginAnimations:nil context:nil];2.设置动画的执行时间 [UIView setAnimationDuration:1.0];3.向上移动// CGPoint tempCenter _btn.center; CGRect tempFrame _btn.frame;tempFrame.origin.y - 50;_btn.frame tempF…

安卓安装kali linux之Termux

本文讲述如何在手机上安装kali linux,我本想安装其他版本的linux,但不知是什么原因安装到一半就卡住&#xff0c;最终安装kali成功了&#xff0c;但也只是安装了kali的壳子&#xff0c;在inux上的操作都可以实现&#xff0c;只是工具并没有安装&#xff0c;后期可以自主安装工具…

常用的作业调度算法应用练习

单道环境下四个作业&#xff0c;它们进入系统的时间如下&#xff1a;作业进入时间估计运行时间&#xff08;分钟&#xff09;JOB18:00120JOB28:5050JOB39:0010JOB49:5020(1)给出FCFS , SJF&#xff0c;HRN下的作业执行次序(2)给出FCFS , SJF, HRN下的作业平均周转时间和带权平均…

第 5-1 课:线程与死锁 + 面试题

线程介绍 线程(Thread)是程序运行的执行单元,依托于进程存在。一个进程中可以包含多个线程,多线程可以共享一块内存空间和一组系统资源,因此线程之间的切换更加节省资源、更加轻量化,因而也被称为轻量级的进程。 什么是进程 进程(Processes)是程序的一次动态执行,是…

检查列表中的所有元素在Python中是否相同

Here, we are implementing a python program to check whether all elements of a list are the same or not? 在这里&#xff0c;我们正在实现一个python程序来检查列表中的所有元素是否相同&#xff1f; We can use [1:] and [:-1] to compare all the elements in the g…

调用百度人脸识别API进行人脸对比 C语言

百度人脸识别api使用是免费的&#xff0c;有人脸对比、人脸搜索、人脸检测与属性分析三个功能&#xff0c;本文写的是人脸对比。这里给出百度人脸对比api的技术文档&#xff0c;请点击网址https://cloud.baidu.com/doc/FACE/s/Lk37c1tpf 另外需要注册百度智能云&#xff0c;获取…

(自连接)SQL面试题-0608

一个简单的表TABLE 有100条以上的信息&#xff0c;其中包括&#xff1a;产品 颜色 数量产品1 红色 123产品1 蓝色 126产品2 蓝色 103产品2 红色 NULL产品2 红色…

SQL Server 2005 常用数据类型详解

1. 字符串数据类型char此数据类型可存储1~8000个定长字符串&#xff0c;字符串长度在创建时指定&#xff1b;如未指定&#xff0c;默认为char(1)。每个字符占用1byte存储空间。nchar此数据类型可存储1~4000个定长Unicode字符串&#xff0c;字符串长度在创建时指定&#xff1b;如…

第 5-4 课:ThreadLocal 详解 + 面试题

什么是 ThreadLocal? ThreadLocal 诞生于 JDK 1.2,用于解决多线程间的数据隔离问题。也就是说 ThreadLocal 会为每一个线程创建一个单独的变量副本。 ThreadLocal 有什么用? ThreadLocal 最典型的使用场景有两个: ThreadLocal 可以用来管理 Session,因为每个人的信息都…

Java LinkedList公共对象peek()方法(带示例)

LinkedList公共对象peek()方法 (LinkedList public Object peek() method) This method is available in package java.util.LinkedList.peek(). 软件包java.util.LinkedList.peek()中提供了此方法。 This method is used to retrieve the head element of the linked list wit…

舵机驱动

舵机的驱动是以PWM信号的占空比来控制的&#xff0c;该PWM信号的周期位20ms&#xff0c;宽度在0.5ms——2.5ms之间&#xff0c;驱使舵机转动角在0——180度之间&#xff0c;一些常用角度对应脉宽如下表&#xff1a; 舵机转动角脉宽00.5 ms451 ms901.5 ms1352 ms1802.5 ms 在实…

【网络流】【Dinic】【Next Array】Dinic模板

注意&#xff1a;有时加边不一定要加反向弧。 Next Array版。 1 #include<cstdio>2 #include<cstring>3 #include<algorithm>4 #include<queue>5 using namespace std;6 #define INF 21474836477 #define MAXN 200118 #define MAXM 6003019 int v[MAXM…

kotlin字符串数组_Kotlin程序读取,遍历,反向和排序字符串数组

kotlin字符串数组Given a string array, we have to read, traverse, reverse and sort its elements. 给定一个字符串数组&#xff0c;我们必须读取&#xff0c;遍历&#xff0c;反转和排序其元素。 Example: 例&#xff1a; Input:arr ["abc", "pqr",…

第 5-3 课:线程池——Executors + 面试题

线程池的创建分为两种方式:ThreadPoolExecutor 和 Executors,上一节学习了 ThreadPoolExecutor 的使用方式,本节重点来看 Executors 是如何创建线程池的。Executors 可以创建以下六种线程池。 FixedThreadPool(n):创建一个数量固定的线程池,超出的任务会在队列中等待空闲的…

液晶显示温度(DS18B20)

DS18B20测温范围-55——125度&#xff0c;在-10——85度之间精度为0.5度&#xff0c;其测温精度还是较高的&#xff0c;DS18B20常见封装为3个引脚&#xff0c;VCC(电源正)&#xff0c;DQ(信号线)&#xff0c;GND(电源负)&#xff0c;如图&#xff1a; DS18B20相关指令&#xf…

英语字根252

英语字根1,agdo,act 做&#xff0c;动2,agrifield 田地&#xff0c;农田(agri也做agro,agr)3,annyear年4,audihear听5,bellwar战争6,brevshort短7,ced,ceed,cessgo行走8,cepttake拿取9,cid,ciscut,kill切&#xff0c;杀10,circring环&#xff0c;圈11,claim,clamcry,shout喊叫1…