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

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

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

Note:

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

class Solution {public:    int singleNumber(int A[], int n) {        int bit[32]={
0}; int res=0; for(int i=0;i<32;i++) { for(int j=0;j
>i)&1); } res|=((bit[i]%3)<

 

转载于:https://www.cnblogs.com/Vae1990Silence/p/4281241.html

你可能感兴趣的文章
Ubuntu 分辨率更改 xrandr Failed to get size of gamma for output default
查看>>
linux 下安装flash player
查看>>
功能简介
查看>>
网络流算法
查看>>
Linux 创建文件系统及挂载文件系统流程详解
查看>>
php中include和require的区别
查看>>
052四级变速
查看>>
python 中的高级函数map()
查看>>
手机连接监听电脑端口实现移动端真机调试
查看>>
textArea用页面加载函数中写限制超过长度的代码
查看>>
JavaScript中数组的方法总结
查看>>
.Net Core项目添加日志功能
查看>>
添加新手引导页需要注意的几个小点
查看>>
MySQL初步
查看>>
SqlServer A库与B库在同一台服务器上
查看>>
开源前端脚本错误监控及跟踪解决项目-BadJS 试用
查看>>
DS博客作业01--日期抽象数据类型设计与实现
查看>>
IScroll5安卓重复点击兼容问题处理
查看>>
小程序学习(二)基本结构与文件的类型
查看>>
Android-查询联系人和增加联系人
查看>>