The Algorithm Design Manual Second Edition


Implementing Binary Search Trees



Download 5,51 Mb.
Pdf ko'rish
bet76/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   72   73   74   75   76   77   78   79   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

3.4.1

Implementing Binary Search Trees

Binary tree nodes have left and right pointer fields, an (optional) parent pointer,

and a data field. These relationships are shown in Figure

3.3;


a type declaration

for the tree structure is given below:




78

3 .


D A T A S T R U C T U R E S

left


right

parent


Figure 3.3: Relationships in a binary search tree (left). Finding the minimum (center) and

maximum (right) elements in a binary search tree

typedef struct tree {

item_type item;

/* data item */

struct tree *parent;

/* pointer to parent */

struct tree *left;

/* pointer to left child */

struct tree *right;

/* pointer to right child */

} tree;


The basic operations supported by binary trees are searching, traversal, inser-

tion, and deletion.



Searching in a Tree

at the root. Unless it contains the query key x, proceed either left or right depending

upon whether occurs before or after the root key. This algorithm works because

both the left and right subtrees of a binary search tree are themselves binary search

trees. This recursive structure yields the recursive search algorithm below:

tree *search_tree(tree *l, item_type x)

{

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



if (l->item == x) return(l);

if (x < l->item)

return( search_tree(l->left, x) );

else


return( search_tree(l->right, x) );

}

The binary search tree labeling uniquely identifies where each key is located. Start




3 . 4

B I N A R Y S E A R C H T R E E S



79

This search algorithm runs in O(h) time, where denotes the height of the

tree.


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   72   73   74   75   76   77   78   79   ...   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