
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
C# program to find common elements in three arrays using sets
Set three arrays
int[] arr1 = { 99, 57, 63, 98 }; int[] arr2 = { 43, 99, 33, 57 }; int[] arr3 = { 99, 57, 42 };
Now set the above elements using HashSet.
// HashSet One var h1 = new HashSet < int > (arr1); // HashSet Two var h2 = new HashSet < int > (arr2); // HashSet Three var h3 = new HashSet < int > (arr3);
Let us see the complete code to find common elements.
Example
using System; using System.Collections.Generic; using System.Linq; public class Program { public static void Main() { int[] arr1 = { 99, 57, 63, 98 }; int[] arr2 = { 43, 99, 33, 57 }; int[] arr3 = { 99, 57, 42 }; // HashSet One var h1 = new HashSet < int > (arr1); // HashSet Two var h2 = new HashSet < int > (arr2); // HashSet Three var h3 = new HashSet < int > (arr3); // Displaying int[] val1 = h1.ToArray(); Console.WriteLine("Set one..."); foreach(int val in val1) { Console.WriteLine(val); } //Displaying int[] val2 = h2.ToArray(); Console.WriteLine("Set two..."); foreach(int val in val2) { Console.WriteLine(val); } //Displaying int[] val3 = h3.ToArray(); Console.WriteLine("Set three..."); foreach(int val in val3) { Console.WriteLine(val); } int i = 0, j = 0, k = 0; Console.WriteLine("Common elements..."); while (i < val1.Length && j < val2.Length && k < val3.Length) { if (val1[i] == val2[j] && val2[j] == val3[k]) { Console.Write(val1[i] + " "); i++; j++; k++; } // x < y else if (val1[i] < val2[j]) i++; // y < z else if (val2[j] < val3[k]) j++; else k++; } } }
- Related Articles
- Python program to find common elements in three lists using sets
- C# program to find common elements in three sorted arrays
- Java program to find common elements in three sorted arrays
- Python program to find common elements in three sorted arrays?
- Find common elements in three sorted arrays in C++
- C++ Program to find the common elements from two arrays
- Python Program to Find Common Elements in Two Arrays
- How to find common elements between two Arrays using STL in C++?
- Java Program to Find Common Elements Between Two Arrays
- Find common elements in three sorted arrays by dictionary intersection in Python
- Golang Program to find the common elements from two arrays
- JavaScript Program for find common elements in two sorted arrays
- Find three closest elements from given three sorted arrays in C++
- Find common elements in three linked lists in C++
- intersection_update() in Python to find common elements in n arrays

Advertisements