Skip to content

I added my practice codes for data structure lesson. Pt-1 single linked list. Pt-2 double linked list. Pt-3 circular linked list.

Notifications You must be signed in to change notification settings

sudeakq/Data-structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 

Repository files navigation

Data Structures

Bu proje, temel veri yapılarını içeren Java modüllerini içerir.

Kullanım

Kodunuzda bir veri yapısını kullanmak için, öncelikle ilgili modülü içe aktarmanız gerekir. Örneğin, listeler için lists modülünü kullanmak istiyorsanız, şu şekilde içe aktarabilirsiniz:

TBListe mylist = new TBListe();
    mylist.listele();
    mylist.basaEkle(10);
    mylist.basaEkle(20);
    mylist.basaEkle(5);
    mylist.sonaEkle(30);

Desteklenen Veri Yapıları

Linked List Stack Queue Binary Search Tree Hash Table

About

I added my practice codes for data structure lesson. Pt-1 single linked list. Pt-2 double linked list. Pt-3 circular linked list.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages