HashTable « LinkedList « Java Collection Q&A

Home
Java Collection Q&A
1.algorithm
2.array
3.Array Byte
4.Array Char
5.Array Convert
6.Array Dimension
7.Array Integer
8.Array Object
9.Array String
10.ArrayList
11.collection
12.comparator
13.Development
14.Garbage Collection
15.Generic
16.hash
17.HashMap
18.HashTable
19.iterator
20.LinkedList
21.List
22.Map
23.queue
24.Set
25.Sort
26.tree
Java Collection Q&A » LinkedList » HashTable 

1. If Linked List and Array are fundamental data structures what type of data structure are tree, hash table, heap etc?    stackoverflow.com

I was going through data structure online class and it was mentioned that linked list and array are fundamental data-structures and so my question is about Hash table, Heap, tree and ...

2. Java Collection: Does concrete class HashSet which uses Hash table implemented using LinkedList as its data structure?    stackoverflow.com

In the book 'A Programmer's guide to Java SCJP certification by Khalid Mughal - 3rd ed.', on page 782, i noticed that it says that concrete class HashSet is implemented using ...

3. Java Generics: Array containing generics    stackoverflow.com

Possible Duplicate:
Java how to: Generic Array creation
Error generic array creation
I have been tasked with writing a Hash Table in Java, which ...

4. Linked list in hash tables    stackoverflow.com

Suppose we wish to repeatedly search a linked list of length N elements, each of which contains a very long string key. How might we take advantage of the hash value ...

5. Array of LinkedLists    stackoverflow.com

I've been trying to implement a hash table in Java for an exercise. For that, I'm trying to use an array of linked lists. Following is a part of the code:

class ...

6. Implementing Hashtable and linked list in java    coderanch.com

I suppose the requirement is that you don't want to use standard API i.e. you don't want to use java.util package and want to create a linklist or want to implement hashtable. You can try 2 things 1. Use arrays but that need more memory management for an unbounded list. 2. Create a structure using innerclass that can hold the reference ...

7. Hash Table, Hash Map, Linked List of objects    coderanch.com

Hash Table, Hash Map, Linked List of objects Please, I need some help with the following project. Deadline is only next week friday 28th: You are required to implement a flight reservation system. Firstly, create a class which will hold the details of a flight. This should include a flight number, departure and arrival cities and the date of departure. You ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.