Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# เพื่อค้นหาองค์ประกอบที่เล็กที่สุดของ K ในอาร์เรย์ 2 มิติ


ประกาศอาร์เรย์ 2 มิติ −

int[] a = new int[] {
   65,
   45,
   32,
   97,
   23,
   75,
   59
};

สมมติว่าคุณต้องการให้ Kth น้อยที่สุด นั่นคือจำนวนเต็มที่น้อยที่สุดเป็นอันดับ 5 เรียงลำดับอาร์เรย์ก่อน -

Array.Sort(a);

เพื่อให้ได้องค์ประกอบที่เล็กที่สุดอันดับที่ 5 -

a[k - 1];

ให้เราดูรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.IO;
using System.CodeDom.Compiler;
namespace Program {
   class Demo {
      static void Main(string[] args) {

         int[] a = new int[] {
            65,
            45,
            32,
            97,
            23,
            75,
            59
         };
         // kth smallest element
         int k = 5;
         Array.Sort(a);
         Console.WriteLine("Sorted Array...");
         for (int i = 0; i < a.Length; i++) {
            Console.WriteLine(a[i]);
         }
         Console.Write("The " + k + "th smallest element = ");
         Console.WriteLine(a[k - 1]);
      }
   }
}