Search:

Type: Posts; User: willemjar

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    1,333

    Re: question from the Core Java II book

    Yes chris that does make sense, since collections is all about selecting and sorting things out. The other confusing part is that hash-stuff. It, at first, seems like a weird computer hocus spocus!...
  2. Replies
    3
    Views
    1,333

    question from the Core Java II book

    A hash table is an array of linked lists. Each list is called a bucket. To find the place of an object in the table, compute its hash code and reduce it modulo the total number of buckets.
    The...
Results 1 to 2 of 2