প্রথমে, তিনটি সাজানো অ্যারে শুরু করুন −
int []one = {20, 35, 57, 70};
int []two = {9, 35, 57, 70, 92};
int []three = {25, 35, 55, 57, 67, 70}; তিন-বাছাই করা অ্যারেতে সাধারণ উপাদানগুলি খুঁজে পেতে, একটি while লুপ ব্যবহার করে অ্যারেগুলির মাধ্যমে পুনরাবৃত্তি করুন এবং তৃতীয়টির সাথে দ্বিতীয় এবং দ্বিতীয় অ্যারের সাথে প্রথম অ্যারেটি পরীক্ষা করুন −
while (i < one.Length && j < two.Length && k < three.Length) {
if (one[i] == two[j] && two[j] == three[k]) {
Console.Write(one[i] + " ");
i++;j++;k++;
}
else if (one[i] < two[j])
i++;
else if (two[j] < three[k])
j++;
else
k++;
} উদাহরণ
তিনটি সাজানো অ্যারেতে সাধারণ উপাদানগুলি খুঁজে পেতে আপনি নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন৷
using System;
class Demo {
static void commonElements(int []one, int []two, int []three) {
int i = 0, j = 0, k = 0;
while (i < one.Length && j < two.Length && k < three.Length) {
if (one[i] == two[j] && two[j] == three[k]) {
Console.Write(one[i] + " ");
i++;j++;k++;
}
else if (one[i] < two[j])
i++;
else if (two[j] < three[k])
j++;
else
k++;
}
}
public static void Main() {
int []one = {20, 35, 57, 70};
int []two = {9, 35, 57, 70, 92};
int []three = {25, 35, 55, 57, 67, 70};
Console.Write("Common elements: ");
commonElements(one, two, three);
}
} আউটপুট
Common elements: 35 57 70