All Questions
3 questions
2
votes
1
answer
1k
views
Lockable linked list
The existing design of class DList and DListNode is taken. The main criteria is to do successive updates in \$O(1)\$ time.
Part ...
3
votes
3
answers
324
views
Implementing sequence abstraction
Below is the code that implements sequence abstraction using type abstraction Sequence (in Java):
...
4
votes
1
answer
157
views
Design/reiterate or code reuse for linked list
This is what my class hierarchy looks like. I have an abstract superclass, AbstractLinkedMyList, that contains common operations for both sorted and unsorted linked ...