With an assignment dealing with access control lists, it was required to construct a doubly-linked list first, as Java doesn't include that in the SUN API. I can understand if the professor wanted us to create the Doubly Linked List from scratch to understand how it works (like writing a sort program vs using the baked in methods), but why exclude it from the library?

That got me to thinking, what determines if a data structure is included in the basic language library? For example, in Java, why is there a LinkedList class but not a DoublyLinkedList?

link|improve this question

.NET didn't even have sets until 3.5 or so. That's just plain nuts. – FogleBird Jan 4 '10 at 4:26
Yeah it was funny seeing how some of my fellow co-workers handled unique element lists. By funny I mean absolutely horrifying. For instance (and I wish this were a joke) for(int i=0;i<myList.Count;i++) //code to look at each index Instead of using that pesky .contains method. – Woot4Moo Jan 4 '10 at 4:31
feedback

2 Answers

up vote 2 down vote accepted

According to the Java Docs:

All of the operations perform as could be expected for a doubly-linked list. Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index.

link|improve this answer
I missed that line when I went over the linked list methods, and it threw me off a bit, as my professor said that Java does not contain a doubly linked list within the core API & we had to construct it ourselves. – Jason Jan 4 '10 at 22:58
feedback

I believe, of course this is opinion, that the only data structures that all programming languages have internally built into them are the following: Array, List, Tree, Graph, and Bag. I think List and Bag can pretty much be interchangeable in terms of vocabulary. Keyword being think.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.