首页 > 其他 > 详细

CommonTwo

时间:2017-02-15 00:30:14      阅读:148      评论:0      收藏:0      [点我收藏+]
public int commonTwo(String[] a, String[] b) {
  int startA=0;
  int startB=0;
  int count=0;
  
  
  while((( startA < a.length ) && ( startB < b.length )))
  {
    if(startA >0){
      if(a[startA].equals(a[startA-1])){
        startA++;
        continue;
      }
    }
    if(startB >0){
      if(b[startB].equals(b[startB-1])){
        startB++;
        continue;
      }
    }
    
    if( a[startA].equals(b[startB]) ){
      count++;
      startA++;
      startB++;
    }
    else if( (a[startA].compareTo(b[startB])) < 0  ){
      startA++;
    }
    else{
      startB++;
    }
    
  }
  return count;
  
}

http://codingbat.com/prob/p100369

 

CommonTwo

原文:http://www.cnblogs.com/youge-OneSQL/p/6399553.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!