1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
CDL appends
a b c
count = 3
Test CDL_PREPEND_ELEM d with elt NULL
a b c d
Test CDL_PREPEND_ELEM e before item b
a e b c d
Test CDL_APPEND_ELEM f with elt NULL
f a e b c d
Test CDL_APPEND_ELEM g after item b
f a e b g c d
count = 7
advancing head pointer
a e b g c d f
a e b g c d f a e b g c d f a e b g c d
a f d c g b e a f d
deleting (b)
a e g c d f
deleting (a)
e g c d f
deleting (c)
e g d f
deleting (g)
e d f
deleting (e)
d f
deleting (d)
f deleting (f)
DL appends
a b c
count = 3
Test DL_PREPEND_ELEM d with elt NULL
a b c d
Test DL_PREPEND_ELEM e before item b
a e b c d
Test DL_APPEND_ELEM f with elt NULL
f a e b c d
Test DL_APPEND_ELEM g after item b
f a e b g c d
count = 7
deleting (b)
f a e g c d
deleting (a)
f e g c d
deleting (c)
f e g d
deleting (g)
f e d
deleting (e)
f d
deleting (d)
f deleting (f)
LL appends
a b c
count = 3
Test LL_PREPEND_ELEM d with elt NULL
a b c d
Test LL_PREPEND_ELEM e before item b
a e b c d
Test LL_APPEND_ELEM f with elt NULL
f a e b c d
Test LL_APPEND_ELEM g after item b
f a e b g c d
count = 7
deleting (b)
f a e g c d
deleting (a)
f e g c d
deleting (c)
f e g d
deleting (g)
f e d
deleting (e)
f d
deleting (d)
f deleting (f)
|