Answered by Vikas Saxena on 2005-05-12 06:22:10: Hashing is a method to store data in an array so that storing, searching, inserting and deleting data is fast .For this every record needs an unique key.
Latest Answer: Hashing is a method to store data in an array so that storing, searching, inserting and deleting data is fast .For this every record needs an unique key. The basic idea is not to search for the correct position of a record with comparisons but to ...
Latest Answer: One more point: we can include..........In C, the members in the struct, by default, public.In C++, the members in the class, by default, private. ...
++i is a single instruction while in i=i+1, first i+1 is computed and then assigned.
What is the difference between the two files. file1.c# include...........int i;void main(){..........}file2.c# includestatic int i;void main(){....}
While in this case for both the programs... the scope and lifetime of variable 'i' is throughout the program..... the value of 'i' is not. For eg. if 'i=2' in the file1.c,
What is exception handling and how is it different from error handling. Why is exception handling used instead of error handling in some cases and vice versa.
What is Hashing in Data structures and why is it used. What the criteria for Hashing and explain some of them.
View page [1] 2 Next >>

Go Top