Joined
Last Seen
0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: A couple of quick optimizations: [code=c]tail->next = NULL;[/code] statement is not needed in else block of Reverse(). [code=c]rev->next->next = NULL;[/code] should be moved right after [code=c]if(count == 0)[/code]. |
The End.