1. its nodes at random positions in memory
2. be difficult to transfer
3. always have the link fields in their nodes
4. be difficult to operate in terms of insertions and deletions
5. be operated only by the update of fields in pointer
6. be stored in computer memory
7. obey conventions implied of recovery
a) The structure represented by physical contiguity is characterized by (correct list of options)
My solution => 3, 5 and 6
b) The structure represented by chaining is characterized by
My solution => 3, 4, 6 and 7
2) (T)True or (F)Fake
( ) a disadvantage is that the chain tends to complicate the design of complex structures
( ) an advantage of physical proximity is that expansions and compaction can be adopted to make insertions and withdrawals
( ) the definition of an Abstract Data Type should be careful that the operations produce results only as objects of a type definition
My solution
(F), (T), (T)
contiguidae physical and chaining
Started by Apprentice123, May 05 2009 10:45 AM
4 replies to this topic
#1
Posted 05 May 2009 - 10:45 AM
|
|
|
#2
Posted 05 May 2009 - 11:11 AM
Before responding, can you clarify:
physically contiguous refers to arrays?
chaining refers to things like linked lists?
physically contiguous refers to arrays?
chaining refers to things like linked lists?
#3
Posted 05 May 2009 - 12:40 PM
WingedPanther said:
Before responding, can you clarify:
physically contiguous refers to arrays?
chaining refers to things like linked lists?
physically contiguous refers to arrays?
chaining refers to things like linked lists?
Yes Exactly
#4
Posted 06 May 2009 - 07:40 AM
Apprentice123 said:
1. its nodes at random positions in memory
2. be difficult to transfer
3. always have the link fields in their nodes
4. be difficult to operate in terms of insertions and deletions
5. be operated only by the update of fields in pointer
6. be stored in computer memory
7. obey conventions implied of recovery
a) The structure represented by physical contiguity is characterized by (correct list of options)
My solution => 3, 5 and 6
2. be difficult to transfer
3. always have the link fields in their nodes
4. be difficult to operate in terms of insertions and deletions
5. be operated only by the update of fields in pointer
6. be stored in computer memory
7. obey conventions implied of recovery
a) The structure represented by physical contiguity is characterized by (correct list of options)
My solution => 3, 5 and 6
3 doesn't make sense here (no pointers).
insertions are a pain with arrays, so 4 should be here.
5 doesn't make sense here (no pointers)
I don't know what 7 is referring to
Apprentice123 said:
b) The structure represented by chaining is characterized by
My solution => 3, 4, 6 and 7
My solution => 3, 4, 6 and 7
4 wouldn't be here, it's just a matter of updating a couple of pointers to insert/delete.
5 would go here (uses pointers)
I still don't know what 7 is refferring to.
Apprentice123 said:
2) (T)True or (F)Fake
( ) a disadvantage is that the chain tends to complicate the design of complex structures
( ) an advantage of physical proximity is that expansions and compaction can be adopted to make insertions and withdrawals
( ) the definition of an Abstract Data Type should be careful that the operations produce results only as objects of a type definition
My solution
(F), (T), (T)
F: linked lists aren't that complicated
F: arrays are a PAIN to do inserts on
T
#5
Posted 06 May 2009 - 07:44 AM
Thanks


Sign In
Create Account


Back to top









