यह जांचने के लिए कि क्या सॉर्टेडसेट निर्दिष्ट संग्रह का सबसेट है, कोड इस प्रकार है -
उदाहरण
using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB"); set1.Add("BC"); set1.Add("CD"); set1.Add("EF"); Console.WriteLine("Elements in SortedSet1..."); foreach (string res in set1){ Console.WriteLine(res); } SortedSet<string> set2 = new SortedSet<string>(); set2.Add("BC"); set2.Add("CD"); set2.Add("DE"); set2.Add("EF"); set2.Add("AB"); set2.Add("HI"); set2.Add("JK"); Console.WriteLine("Elements in SortedSet2..."); foreach (string res in set2){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 is a subset of SortedSet2? = "+set1.IsSubsetOf(set2)); } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Elements in SortedSet1... AB BC CD EF Elements in SortedSet2... AB BC CD DE EF HI JK SortedSet1 is a subset of SortedSet2? = True
उदाहरण
आइए एक और उदाहरण देखें:
using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); set1.Add("CD"); Console.WriteLine("Elements in SortedSet1..."); foreach (string res in set1){ Console.WriteLine(res); } SortedSet<string> set2 = new SortedSet<string>(); set2.Add("BC"); set2.Add("CD"); set2.Add("DE"); set2.Add("EF"); set2.Add("AB"); set2.Add("HI"); set2.Add("JK"); Console.WriteLine("Elements in SortedSet2..."); foreach (string res in set2){ Console.WriteLine(res); } Console.WriteLine("SortedSet1 is a subset of SortedSet2? = "+set1.IsSubsetOf(set2)); } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Elements in SortedSet1... CD Elements in SortedSet2... AB BC CD DE EF HI JK SortedSet1 is a subset of SortedSet2? = True