1.find the second maximum in an array?
2.how do you create hash table in c?
3.what is hash collision
Answer Posted / steven le
1. Selection sort with second pass
2. Basically we create a two dimension array (key, value)
and then we define a hash function to determine position of
elements when we insert/delete.
3. When two elements insert to the same spot in a hash
table, we have a hash collision. H(x1) = H(x2) = y
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Is sizeof a keyword in c?
What is difference between scanf and gets?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Explain data types & how many data types supported by c?
how can I convert a string to a number?
Why isnt any of this standardized in c?
What are the different types of errors?
What is c method?
What are local variables c?
Is there any possibility to create customized header file with c programming language?
When was c language developed?
Why is void main used?
Is main an identifier in c?
find the sum of two matrices and WAP for it.