C# TA SIRALI LİSTE (SORTED LİST)

Veri yapılarının önemli konularından biriside bilindiği üzere Sorted List (bağlı liste) dir.Bizde bu makalemizde Sorted listin kullanımını kısaca gösterip verilen örnekle tamamlayacağız.Ayrıca makalemizde Sorted List class ının Add,Remove,RemoveAt gibi özelliklerinide kullanımlarıyla göreceğiz.SortedList Classına eleman eklemek istendiğinde Add özelliğine 2 parametre verilir ilki index 2.siyse o index in taşıyacağı eleman değeri yani value verilir. Remove daysa tıpkı Add gibi 2 parametre vardır 1.si kaldırılacak index 2.siyse taşıdığı value…RemoveAt deyse sadece kaldırılacak index verilir.Sıralı Liste kodu Aşağıda verilmiştir görüntüdeyse kodun çıktısı verilmiştir.

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
SortedList x = new SortedList();

string[] p = { “mehmet”, “salih”, “deveci” };

for (int i = 0; i < p.Length; i++)
{
x.Add(i, p[i]);

}
Console.WriteLine(“BAĞLI LİSTEYE ELEMAN EKLENDİ”);

for (int i = 0; i < x.Count; i++)
{
Console.Write(x[i]+ ”  “);
}
Console.WriteLine(“\n\nBAĞLI LİSTENİN 3.İNDİSİNE KUHEYLAN DEĞERİ EKLENDİ”);

x.Add(3, “kuheylan”);

Console.WriteLine(“\n”);
for (int i = 0; i < x.Count; i++)
{
Console.Write(x[i] + ”  “);
}
Console.WriteLine(“\n\nBAĞLI LİSTENİN 3.İNDİSİ YANİ, KUHEYLAN DEĞERİ SİLİNDİ”);
x.RemoveAt(3);
Console.WriteLine(“\n”);
for (int i = 0; i < x.Count; i++)
{
Console.Write(x[i] + ”  “);
}

Console.Writeline(“\n\nMEHMET SALİH DEVECİ YAZILIM UZMANI”);
Console.ReadLine();
}
}
}

 

Oracle Exadata SQL Server Goldengate Weblogic EBS ve Linux konusunda aşağıdaki konularda 7×24 Uzman Danışmanlara yada Eğitimlere mi
İhtiyacınız var [email protected] adresine mail atarak Bizimle iletişime geçebilirsiniz.

– Oracle Veritabanı Danışmanlığı
– Oracle Veritabanı Bakım ve Destek
– Exadata Danışmanlığı
– Exadata Bakım ve Destek
– SQL Server Veritabanı Danışmanlığı
– SQL Server Veritabanı Bakım ve Destek
– Goldengate Danışmanlığı
– Goldengate Bakım ve Destek
– Linux Danışmanlığı
– Linux Bakım ve Destek
– Oracle EBS Danışmanlığı
– Oracle EBS Bakım ve Destek
– Weblogic Danışmanlığı
– Weblogic Bakım ve Destek
– Oracle Veritabanı Eğitimleri
– Oracle VM Server Danışmanlığı
– Oracle VM Server Bakım ve Destek
– Oracle EPPM Danışmanlığı
– Oracle EPPM Bakım ve Destek
– Oracle Primavera Danışmanlığı
– Oracle Primavera Bakım ve Destek
– Oracle Eğitimleri
– SQL Server Eğitimleri
– Goldengate Eğitimleri
– Exadata Eğitimleri
– Linux Eğitimleri
– Oracle EBS Eğitimleri
– Oracle VM Server Eğitimleri
– Weblogic Eğitimleri
– Oracle EPPM Eğitimleri
– Oracle Primavera Eğitimleri

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

5 comments

  1. güzel olmuş, uzun zamandr arıyordm cok saolun!!!

  2. Endercim gördüğün gibi yazılıyo!!!

  3. I have been absent for a while, but now I remember why I used to love this blog. Thank you, I’ll try and check back more frequently. How frequently you update your website?

Leave a Reply

Your email address will not be published. Required fields are marked *