NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

#include <iostream>
using namespace std;

class Dugum // listedeki düğümlerin tanımını yapan sınıf
{
private:
int sayi; //listedeki düğüm içerisindeki veriyi tutucak, veri güvenlik altında(private)

public:
Dugum *sonraki; //listedeki düğümde bir sonraki düğümün bellek adresini tutacak.

Dugum(){}; //kurucu fonksiyon.

Dugum(int a) //diğer kurucu fonksiyon.ilk elemanı ekler ve göstericiyi sıfıra eşitler, yani son düğümü NULL atar.
{
sayi=a;
sonraki=0;
}

int sayiDondur() //düğüm içerisindeki veriye erişmemizi sağlar.c# ta get ile yapılır.
{
return sayi;
}

};

class liste //bağlantılı liste ile ilgili fonksiyonların bulunduğu önemli sınıf.
{
public:
Dugum *bas; //listedeki ilk düğümün adresini tutar bütün erişimler bu değişken ile başlar
Dugum *son; //son düğümün adresini tutar.
Liste()
{
bas=0;//listede eleman yok baş ve son sıfırı gösteriyor.
son=0;
}

Liste(int a) //listeye ilk eleman eklenir.
{
Dugum *p=new Dugum(a); //ilk düğüm oluşturulur bu düğümün verisi a'dır.
bas=son=p; //ilk düğüm ve son düğüm p'dir.
}

void ekle(int a)
{
if(bas==0) //liste boş ise
{
bas=new Dugum(a); //bas'a eklenen düğüm atanır.
son=bas; //ilk düğüm aynı zamanda son düğümdür.
}
else //eğer listede düğüm varsa
{
Dugum *yeniDugum=new Dugum(a); //yeni düğüm olusturulur.verisi a olur.sonraki ise sıfırı gösterir.
(*son).sonraki=yeniDugum; //önceden son olan düğümün sonraki ile işaret ettiği yer yeni düğüm olarak atanır.
son=yeniDugum;
}
cout<<"dugum basariyla eklendi."<<endl;
}

void yazdir() //listedi yazdırır
{
Dugum *temp; //yazdırma işlemi için geçici bir düğüm oluşturulur.boş düğümden itibaren tek tek bütün düğümler...
temp=bas; //yazdirmaya en baştan başlanır.

if(bas!=0) //listede eleman varsa
{
while(temp!=0) //liste bitene kadar
{
cout<<(*temp).sayiDondur()<<" "; //düğümdeki sayıyı yazdır.
temp=(*temp).sonraki; //sonraki düğüme geç
}
cout<<endl;
}
else
cout<<"listede eleman bulunmamaktadir";
}

void sil(int a)
{
Dugum *temp=0;
Dugum *birOnceki=0;

if(bas!=0) //eğer liste bos değilse
{
temp=bas; // aramaya bastan baslanarak ilerlenir.

while((*temp).sonraki!=0 && (*temp).sayiDondur()!=a) //liste sonuna kadar ve sayi bulunana kadar bunu yap
{
birOnceki= temp; //silinecek düğümden önceki düğümü
temp=(*temp).sonraki; //ve silinecek düğümden sonraki düğümü al.
}
if ((*temp).sayiDondur()==a) //eğer silinecek eleman listede bulunuyorsa
{
if(bas==son) //listede tek eleman varsa
{
bas=son=0; //liste boşaltıldı.
}
else if(birOnceki==0) // silinecek eleman en basta ise if(temp==bas) şeklinde de yazılabilir.
{
bas=(*bas).sonraki;
}
else // silinecek eleman arada ise
{
(*birOnceki).sonraki=(*temp).sonraki;
}
if (temp==son) //silinecek eleman en sonda ise
{
son=birOnceki;
}
cout<<"dugum basariyla silindi.";
}
else
{
cout<<"silmek istediginiz eleman listede bulunamadi...";
}
}
}
};

int main()
{
Liste liste;
char secim;
int a;

while(1)
{
cout<<"1.EKLE"<<endl;
cout<<"2.SIL"<<endl;
cout<<"3.LISTELE"<<endl;
cin>>secim;
switch(secim)
{
case '1':
cout<<"eklemek istediginiz elemani girin: ";
cin>>a;
liste.ekle(a);
break;
case '2':
cout<<"silmek istediginiz elemani girin: ";
cin>>a;
liste.sil(a);
break;
case '3':
liste.yazdir();
break;
default:
cout<<"yanlis giris...";
break;
}
}
return 0;
}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.