@ Piyush: Excellent Solution...It appears both Correct and O(n)...Good work
!![?]

Just a minor correction in your algo.[?]
* while(B[i]<C[j]) *
*                 j++;
must also check for J's bound as:
**while ( j < ( sizeof(A)/sizeof(A[0]) )* && *B[i]<C[j] )
                 j++;
Or it will crash when J goes out of bound and we try to reference C[j].

Nywayz..thnx for the solution and algo !!
*

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

<<363.gif>>

<<360.gif>>

Reply via email to