码迷,mamicode.com
首页 > 编程语言 > 详细

【算法数据结构Java实现】欧几里得算法

时间:2014-11-25 14:31:25      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   java   数据   

1.背景

           欧几里得算法是一个求最大因子的快速算法。如果m,n存在最大因子k,假设m=x*n+r,那么m和n可以整出k的话,r也肯定可以整除k
           因为定理:如果M>N,则M mod N<M/2 ,说明时间复杂度是O(log(n))

2.代码
           

package Algorithm_analysis;

public class Euclid {

	public static void main(String[] args){
		int m=63;
		int n=18;
		int remainder=0;
		while(n!=0){
		  remainder=m%n;
		  m=n;
		  n=remainder;		  
		}
		System.out.print(m);
	}
}


/********************************

* 本文来自博客  “李博Garvin“

* 转载请标明出处:http://blog.csdn.net/buptgshengod

******************************************/


【算法数据结构Java实现】欧几里得算法

标签:style   blog   http   io   ar   color   sp   java   数据   

原文地址:http://blog.csdn.net/buptgshengod/article/details/41479023

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!