程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> 【LeetCode OJ 136】Single Number

【LeetCode OJ 136】Single Number

編輯:關於C++

題目:Given an array of integers, every element appearstwiceexcept for one. Find that single one.

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

解題思路:題意為:給定一個數組,只有一個元素出現了一次,其它元素都出現了兩次,找出那個只出現一次的數。可以遍歷數組,分別進行異或運算。

注:異或運算:相同為0,不同為1。遍歷並異或的結果就是那個只出現了一次的數。

示例代碼:

public class Solution 
{
	public int singleNumber(int[] nums) 
	{
		int result=nums[0];
		for (int i = 1; i < nums.length; i++)
		{
			result^=nums[i];
		}
		return result;
	}  
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved