The Algorithm Design Manual Second Edition



Download 5,51 Mb.
Pdf ko'rish
bet66/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   62   63   64   65   66   67   68   69   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

Searching a List

Searching for item in a linked list can be done iteratively or recursively. We opt

for recursively in the implementation below. If is in the list, it is either the first

element or located in the smaller rest of the list. Eventually, we reduce the problem

to searching in an empty list, which clearly cannot contain x.

2

C permits direct manipulation of memory addresses in ways which may horrify Java programmers, but we



will avoid doing any such tricks.

give the address in memory where a particular chunk of data is located

.

2

Pointers



in C have types declared at compile time, denoting the data type of the items they

can point to. We use *p to denote the item that is pointed to by pointer p, and &x

to denote the address of (i.e., pointer to) of a particular variable x. A special NULL

pointer value is used to denote structure-terminating or unassigned pointers.




3 . 1

C O N T I G U O U S V S . L I N K E D D A T A S T R U C T U R E S



69

list *search_list(list *l, item_type x)

{

if (l == NULL) return(NULL);



if (l->item == x)

return(l);

else

return( search_list(l->next, x) );



}


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   62   63   64   65   66   67   68   69   ...   488




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish