Site hosted by Angelfire.com: Build your free website today!

A Little Somethin' Somethin' That Keeps Me Up At Night

This site is all in my own opinion. If you don't like it, then don't read it, I'm not making you. And I don't need therapy.
Typical.
Not being the best, not being the worst. Just being. Not being what your parents want you to be. But not being exactly what you want to be. Maybe because you don't know exactly, what you are, or who you are trying to be. I'm hoping that this is all one big dream that I'll wake up from any second now....... ( a theme the movie THE MATRIX was based on, go see it)
A big part of life is death. No life is complete without it. I wonder if there is life after death. If not I'll be nothingness, but maybe thats all I am now. I hope I'm reincarnated as a human. I don't really want to go threw all that school again, but whatever. I just want to be able to experience life from another point of view. Maybe I'll be someone important, ha. But I haven't given up on this life yet because I still have the chance to be someone important, ha. I'm gonna rule the world some day, you just wait and see....
At the end of every summer I look back upon what I accomplished. During the summer I eat, sleep, watch tv,listen to music, and sometimes I visit my friends. During the school year I wake up to late, don't get enough sleep, eat, watch tv, listen to music, go to school, and sometimes I visit my friends. I just reflect upon how I did stuff and a smack myself in the head from utter disappointment and I wonder what I was thinking.
In my life my family, friends, comedy, and music have influenced my life. My family, they're not bad people, I just don't want to end up being like everyone else, but I probably will.

Back

1. rehashing resolving a collision by computing a new hash location from a hash function that manipulates the original location rather then the elements key is correct

2. bucket a collection of elements associated with a particular hash location is correct

3. collision a condition resulting when two or more keys produce the same hash location is correct

4. radix the number of possibilities for each position; the digits in a number system is correct

5. big-0 notation a notation that expresses computing time (complexity) as the term in a function that increases most rapidly relative to the size of a problem is correct

6. folding a hash method that breaks the key into several pieces and concatenates or exclusive-ORs some of them to form a hash value is correct

7. logarithmic order for an algorithm, when the Big-0 work expression can be expressed in terms of the logarithm of N, where N is the number of values in a data set is correct

8. clustering the tendency of elements to become unevenly distributed in a hash table; with many elements clustering around a single hash location is correct

9. binary search a search algorithm for sorted lists that involves dividing the list in half and determining, by value comparison, whether the item would be in the upper or lower half; the process is performed repeatedly until either the item is found or it is determined that the item is not on the list is correct

10. quadratic probing resolving a hash collision by using the rehashing formula (HashValue + I*I) % array_size, where I is the number of times the rehash function has been applied is correct

11. hash function a function used to manipulate the key of an element in a list to identify its location in the list is correct

12. collating sequence the ordering of the elements of a set or series, such as the characters (values) in a character set is correct

13. sorting arranging the components of a list in order (for instance, words in alphabetical order, numbers in ascending or descending order) is correct

14. linear probing resolving a hash collision by sequentially searching a hash table beginning at the location return by the hash function is correct

15. hashing the technique used for ordering and accessing elements in a list in a relatively constant amount of time by manipulate the key to identify its location in the list is correct