Write a C# program for a given array of positive integers. All numbers occur an even number of times except one number which occurs an odd number of times. Find the number in O(n) time & constant space.
Examples :
Input: arr = {1, 2, 3, 2, 3, 1, 3}
Output : 3
Input: arr = {5, 7, 2, 7, 5, 2, 5}
Output: 5
C# Program to Find the Number Occurring Odd Number of Times using Nested Loop:
A Simple Solution is to run two nested loops. The outer loop picks all elements one by one and the inner loop counts the number of occurrences of the element picked by the outer loop.
Below is the implementation of the brute force approach :
C#
using System;
class GFG
{
static int getOddOccurrence( int []arr, int arr_size)
{
for ( int i = 0; i < arr_size; i++) {
int count = 0;
for ( int j = 0; j < arr_size; j++) {
if (arr[i] == arr[j])
count++;
}
if (count % 2 != 0)
return arr[i];
}
return -1;
}
public static void Main()
{
int []arr = { 2, 3, 5, 4, 5, 2, 4, 3, 5, 2, 4, 4, 2 };
int n = arr.Length;
Console.Write(getOddOccurrence(arr, n));
}
}
|
Time Complexity: O(n^2)
Auxiliary Space: O(1)
C# Program to Find the Number Occurring Odd Number of Times using Hashing:
A Better Solution is to use Hashing. Use array elements as a key and their counts as values. Create an empty hash table. One by one traverse the given array elements and store counts.
Below is the implementation of the above approach:
C#
using System;
using System.Collections.Generic;
public class OddOccurrence
{
static int getOddOccurrence( int []arr, int n)
{
Dictionary< int , int > hmap = new Dictionary< int , int >();
for ( int i = 0; i < n; i++)
{
if (hmap.ContainsKey(arr[i]))
{
int val = hmap[arr[i]];
hmap.Remove(arr[i]);
hmap.Add(arr[i], val + 1);
}
else
hmap.Add(arr[i], 1);
}
foreach (KeyValuePair< int , int > entry in hmap)
{
if (entry.Value % 2 != 0)
{
return entry.Key;
}
}
return -1;
}
public static void Main(String[] args)
{
int []arr = new int []{2, 3, 5, 4, 5, 2, 4, 3, 5, 2, 4, 4, 2};
int n = arr.Length;
Console.WriteLine(getOddOccurrence(arr, n));
}
}
|
Time Complexity: O(n)
Auxiliary Space: O(n)
C# Program to Find the Number Occurring Odd Number of Times using Bit Manipulation:
The Best Solution is to do bitwise XOR of all the elements. XOR of all elements gives us odd occurring elements.
Here ^ is the XOR operators;Note :x^0 = xx^y=y^x (Commutative property holds)(x^y)^z = x^(y^z) (Distributive property holds)x^x=0
Below is the implementation of the above approach.
C#
using System;
class GFG
{
static int getOddOccurrence( int []arr, int arr_size)
{
int res = 0;
for ( int i = 0; i < arr_size; i++)
{
res = res ^ arr[i];
}
return res;
}
public static void Main()
{
int []arr = { 2, 3, 5, 4, 5, 2, 4, 3, 5, 2, 4, 4, 2 };
int n = arr.Length;
Console.Write(getOddOccurrence(arr, n));
}
}
|
Time Complexity: O(n)
Auxiliary Space: O(1)
Please refer complete article on Find the Number Occurring Odd Number of Times for more details!
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Oct, 2023
Like Article
Save Article