www.fatihkabakci.com

Personal Website and Computer Science TUR EN

BAGLI LISTE ILE BANKA KUYRUK MODELI

Last update: 2/14/2012 4:48:00 AM

Yazan ve Cevaplayan:Fatih KABAKCI

Bu soru CHIP online C/C++ sayfasından 24 ocak 2011 tarihinde tarrasque01 adlı kullanıcı tarafından sorulan bir sorudur.

Gelen Soru:merhaba arkadaşlar ben bağlı liste ile bankalardaki kuyruk sistemini tasarlamak istiyorum.mesela normal müşterilere 100 lü bir sıra nosu verirken özel müşterilere başlardan sıra numarası verecek.yardımcı olursanız çok memnun olurum.saygılar

Verilen Cevap:

Bagli liste veri modeli,ilgili data grubu icerisindeki verilerin birbirlerine tren zinciri gibi bagli oldugu bir modeldir.C veya C++ programlama dili acisindan dusunuldugu zaman bir bagli liste isaretçi(pointer) veya dizi(array) uzerine insa edilebilir.

Yukaridaki soruda bir banka sistemi icerisindeki sira yapisinin bagli liste uzerinde kurgulanmasi istenmistir.Bilindigi uzere diziler ayni veri toplulugunu tek bir yapi altinda toplayabilen bir veri yapisidir ve icerisinde bulundurdugu her eleman ise genellikle sirali indexler mantiginda tutulmaktadir.
Problemi dizi uzerinde insa etmeye calisirsak,her bir musteri _id degeri dizinin index numarasini referans alabilir.Dizi icerisindeki degerler ise,musterilerin herhangi bir bilgisini barindirabilir.O halde yapilmasi gereken ilk islem(operation) kuyruk dizisinin banka yapisi icerisinde kurgulanmasidir,akabinde ise banka dizisi icin musteri kayitlarini gerceklestiren bir fonksiyon(function) yazilmasidir.
Banka yapisi icerisinde tasarlanacak kuyruk bilesenleri icerisinde,kuyrugu simgeleyen bir dizi,herbir musterinin kuyruk numarasini belirleyen bir id,musterinin kimlik numarasi gibi ozel bir bilgisini saklayan data ve bankadaki toplam musteri sayisini tutan bir count degiskeni yaratilabilir.Anlatilan bu kuyruk modeli kod satirlari icerisinde gorulmektedir.

Kurgu geregince,bir bankaya gelen musteri sayet siradan bir musteri ise,mevcut sira numarasini alirken,özel bir musteri oldugunda istege bagli bir sira numarasiyla listenin istenilen bir konumuna gececektir.Program yazilmadan once ikinci bir kurgu olan,her bir musteri gerekli islemini gerceklestirdikten sonra kuyruktan ayrilacaktir.Dolasiyiyla toplam musteri sayisinda her ayrilan icin -1 degeri isleyecektir.

Son olarak kuyrukta bekleyen her bir musteriyi goruntulemek istedigimizde dizinin elemanlarini bastirmak yeterli olacaktir.

Bu fonksiyonlarıda programımıza dahil ettigimizde, algoritmanin C dilindeki karsiligi asagidaki gibi olacaktır.
 
#include <stdio.h>
#include <conio.h>
struct bank {
       
       enum { max=100};
       int customerArr[max];
       int id;
       int data;
       int numberOfCustomer;
       
       };
       
void customerAdd(bank *akbank) {
     
     printf("Queue number is %d\n",akbank->numberOfCustomer);
     printf("Are you enter to the customer id 1/0 ? \n");
     int secenek=0;
     scanf("%d",&secenek);
     if(secenek) 
     {
     printf("Enter the customer id please\n");
     scanf("%d",&akbank->id);
     if(akbank->id < 10)
     for(int i=akbank->numberOfCustomer-1;i>=akbank->id;i--)
     akbank->customerArr[i+1]=akbank->customerArr[i];
     akbank->numberOfCustomer++;
     }
     printf("Enter to the customer data please\n");
     scanf("%d",&akbank->data);
     if(!secenek)
     akbank->id=akbank->numberOfCustomer++;
     akbank->customerArr[akbank->id]=akbank->data;
     }
     
void runned(bank *akbank) {
     
     akbank->numberOfCustomer--;
     for(int i=0;inumberOfCustomer;i++)
     akbank->customerArr[i]=akbank->customerArr[i+1];
     printf("The operation was complete\n");
     }
     
void printCustomers(bank *akbank) {
     
     printf("The customers who were waiting Akbank\n");
     for(int i=0;inumberOfCustomer;i++)
     printf("%d-%d * ",i+1,akbank->customerArr[i]);
     }
int main() {
    
    bank akbank;
    akbank.numberOfCustomer=0;
    customerAdd(&akbank);
    customerAdd(&akbank);
    customerAdd(&akbank);
    customerAdd(&akbank);
    runned(&akbank);
    printCustomers(&akbank);
    getch();
    return 0;   
}
Başarılar
There has been no comment yet

Name:


Question/Comment
   Please verify the image




The Topics in Computer Science

Search this site for





 

Software & Algorithms

icon

In mathematics and computer science, an algorithm is a step-by-step procedure for calculations. Algorithms are used for calculation, data processing, and automated reasoning.

Programming Languages

icon

A programming language is a formal constructed language designed to communicate instructions to a machine, particularly a computer. It can be used to create programs to control the behavior of a machine. Java,C, C++,C#

Database

icon

A database is an organized collection of data. The data are typically organized to model aspects of reality in a way that supports processes requiring information.

Hardware

icon

Computer hardware is the collection of physical elements that constitutes a computer system. Computer hardware refers to the physical parts or components of a computer such as the monitor, memory, cpu.

Web Technologies

icon

Web development is a broad term for the work involved in developing a web site for the Internet or an intranet. Html,Css,JavaScript,ASP.Net,PHP are one of the most popular technologies. J2EE,Spring Boot, Servlet, JSP,JSF, ASP

Mobile Technologies

icon

Mobile application development is the process by which application software is developed for low-power handheld devices, such as personal digital assistants, enterprise digital assistants or mobile phones. J2ME

Network

icon

A computer network or data network is a telecommunications network that allows computers to exchange data. In computer networks, networked computing devices pass data to each other along data connections.

Operating Systems

icon

An operating system is software that manages computer hardware and software resources and provides common services for computer programs. The OS is an essential component of the system software in a computer system. Linux,Windows

Computer Science

icon

Computer science is the scientific and practical approach to computation and its applications.A computer scientist specializes in the theory of computation and the design of computational systems.