Posts
 
Reputation
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
~703 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for lazylibran82

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].

Member Avatar for Prad_1
0
703

The End.