2.5H!!!


SUBMITTED BY: Guest

DATE: Sept. 20, 2014, 12:33 p.m.

FORMAT: Text only

SIZE: 412 Bytes

HITS: 596

  1. int seaLevel(double ar[],int len)
  2. {
  3. int k=0;
  4. int end=len-1;
  5. int start=0;
  6. while(k==0)
  7. {
  8. if(start!=end-2)
  9. {
  10. if(ar[end/2+start/2]>0)
  11. {
  12. if(ar[(end/2+start/2)+1]<0)
  13. {
  14. k=end/2+start/2;
  15. }
  16. start=end/2+(start/2);
  17. }
  18. else
  19. {
  20. end=end/2+(start/2);
  21. }
  22. }
  23. else
  24. {
  25. k=start+1;
  26. }
  27. }
  28. return k;
  29. }

comments powered by Disqus