博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode-Single Number
阅读量:4983 次
发布时间:2019-06-12

本文共 472 字,大约阅读时间需要 1 分钟。

Given an array of integers, every element appears twice except for one. Find that single one.

Note:

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

 

在数组中,数字皆成对出现,找出唯一一个单独的数字。

思路:a^a=0,相同数字异或为0.

 

1 public class Solution { 2     public int singleNumber(int[] A) { 3         if(A==null||A.length==0) 4             return 0; 5         int res=0; 6         for(int i=0;i

 

转载于:https://www.cnblogs.com/zl1991/p/6288600.html

你可能感兴趣的文章
字符串反混淆实战 Dotfuscator 4.9 字符串加密技术应对策略
查看>>
单例模式
查看>>
Robotium源码分析之Instrumentation进阶
查看>>
Android 交错 GridView
查看>>
(2)把BlackBerry作为插件安装到已有的Eclipse中
查看>>
VUE-es6
查看>>
MySQL-5.7 高阶语法及流程控制
查看>>
C++学习笔记(十)——向上造型
查看>>
2017/6/16
查看>>
LeetCode 445——两数相加 II
查看>>
预备作业03 20162308马平川
查看>>
【Java】嵌套For循环性能优化案例
查看>>
面试了一个开发人员
查看>>
软件工程及软件项目开发流程
查看>>
关于android4.3 bluetooth4.0的那些事儿
查看>>
嵌入式成长轨迹14 【嵌入式环境及基础】【Linux下的C编程 上】【gcc、gdb和GNU Make】...
查看>>
C语言讲义——变量的输出
查看>>
shell脚本 ----每天学一点shell
查看>>
FZU2150 :Fire Game (双起点BFS)
查看>>
php_常用操作_读取文件_数据库操作
查看>>