Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.0K
2 Posted Topics
Re: reverse using recursion.. i think this if condition is wrong if (! (n && n -> next)) it should be if (! (n->next && n->next->next)) this is to ensure that n points to the 2nd last node. (i.e. if n->next->next is NULL we have to return n as here n … | |
Re: Hi i have a simple problem related to hashing/collisions/chaining but i am stuck with it: suppose: * 1. i have 33 keys * 2. that i want to map on 11 indexes of a hash table * 3. each index in hash table contains a linear array of size 3 … |
The End.