Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में सॉर्टेडलिस्ट की क्षमता

SortedList की क्षमता प्राप्त करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args){
      SortedList sortedList = new SortedList();
      sortedList.Add("A", "1");
      sortedList.Add("B", "2");
      sortedList.Add("C", "3");
      sortedList.Add("D", "4");
      sortedList.Add("E", "5");
      sortedList.Add("F", "6");
      sortedList.Add("G", "7");
      sortedList.Add("H", "8");
      sortedList.Add("I", "9");
      sortedList.Add("J", "10");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in sortedList){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Console.WriteLine("Count of SortedList key-value pairs = "+sortedList.Count);
      Console.WriteLine("Capacity of SortedList = "+sortedList.Capacity);
      Console.WriteLine("\nEnumerator to iterate through the SortedList...");
      IDictionaryEnumerator demoEnum = sortedList.GetEnumerator();
      while (demoEnum.MoveNext())
         Console.WriteLine("Key = " + demoEnum.Key + ", Value = " + demoEnum.Value);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

SortedList elements...
Key = A, Value = 1
Key = B, Value = 2
Key = C, Value = 3
Key = D, Value = 4
Key = E, Value = 5
Key = F, Value = 6
Key = G, Value = 7
Key = H, Value = 8
Key = I, Value = 9
Key = J, Value = 10
Count of SortedList key-value pairs = 10
Capacity of SortedList = 16

Enumerator to iterate through the SortedList...
Key = A, Value = 1
Key = B, Value = 2
Key = C, Value = 3
Key = D, Value = 4
Key = E, Value = 5
Key = F, Value = 6
Key = G, Value = 7
Key = H, Value = 8
Key = I, Value = 9
Key = J, Value = 10

उदाहरण

आइए अब एक और उदाहरण देखें -

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args){
      SortedList sortedList = new SortedList();
      sortedList.Add("A", "1");
      sortedList.Add("B", "2");
      sortedList.Add("C", "3");
      sortedList.Add("D", "4");
      sortedList.Add("E", "5");
      sortedList.Add("F", "6");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in sortedList){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Console.WriteLine("Count of SortedList key-value pairs = "+sortedList.Count);
      Console.WriteLine("Capacity of SortedList = "+sortedList.Capacity);
      sortedList.Clear();
      Console.WriteLine("Count of SortedList key-value pairs = "+sortedList.Count);
      Console.WriteLine("Capacity of SortedList = "+sortedList.Capacity);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

SortedList elements...
Key = A, Value = 1
Key = B, Value = 2
Key = C, Value = 3
Key = D, Value = 4
Key = E, Value = 5
Key = F, Value = 6
Count of SortedList key-value pairs = 6 Capacity of SortedList = 16
Count of SortedList key-value pairs = 0 Capacity of SortedList = 16

  1. सी # में ऐरेलिस्ट क्लास का उपयोग कैसे करें?

    ArrayList वर्ग किसी वस्तु के क्रमबद्ध संग्रह का प्रतिनिधित्व करता है जिसे व्यक्तिगत रूप से अनुक्रमित किया जा सकता है। यह एक सरणी का एक विकल्प है। निम्न तालिका ArrayList वर्ग के कुछ सामान्य रूप से उपयोग किए जाने वाले गुणों को सूचीबद्ध करती है - क्रमांक संपत्ति और विवरण 1 क्षमता ArrayList मे

  1. सी # में सॉर्टेडलिस्ट क्लास की क्षमता संपत्ति क्या है?

    SortedList वर्ग में क्षमता गुण में SortedList का अधिकतम आकार होता है। सॉर्टेडलिस्ट की डिफ़ॉल्ट क्षमता 16 है। आप C# में SortedList वर्ग की क्षमता संपत्ति को लागू करने के लिए निम्नलिखित कोड को चलाने का प्रयास कर सकते हैं - उदाहरण using System; using System.Collections; namespace Demo {    

  1. पायथन में कार पूलिंग

    मान लीजिए कि कोई वाहन है जिसमें खाली सीटों की क्षमता है, जो शुरू में यात्रियों के लिए उपलब्ध है। वाहन केवल पूर्व की ओर चलता है, इसलिए हम पश्चिम की ओर मुड़कर नहीं चल सकते। हमने यात्राओं की एक सूची दी है, यात्रा [i] =[num_passengers, start_location, end_location], जिसमें ith यात्रा के बारे में जानकारी