【发布时间】:2014-12-31 13:05:20
【问题描述】:
是的,这是作业,但我非常坚持想要什么。比较器类应该实现 java.util.Comparator,sort() 方法的第二个参数应该是我的 Comparator 类的一个实例。
到目前为止,我的比较器类看起来像:
import java.util.Comparator;
public class Compare implements Comparator<Rational> {
public int compare1(int a, int b){
int z = 0;
if(a > b)
z = 1;
else if(b > a)
z = -1;
return z;
}
@Override
public int compare(Rational a, Rational b) {
// TODO Auto-generated method stub
return 0;
}
}
我有一个单独的方法来对数组进行排序,但是这个方法使用 compareTo()
public static Collection<Rational> sort1(List<Rational> list){
List<Rational> sortedList1 = new ArrayList<Rational>();
for (int i=0;i < list.size();i++) { //iterating through list
Rational currentValue = list.get(i);
int pos = sortedList1.size();
for (int j=0;j<sortedList1.size();j++) {
int comparison = currentValue.compareTo(sortedList1.get(j)); //comparing
//this is the right position if the currentValue is greater or equal
//to the sorted value at this position
if(comparison > 0 || comparison == 0){
pos = j;
break;
}
}
sortedList1.add(pos, currentValue);
}
return sortedList1;
}
除了使用单独的比较器类外,我应该使用什么方法?我完全不知道我应该做什么。
我的 Rational 类看起来像:
公共类 Rational 实现 Comparable {
private int num; // the numerator
private int den; // the denominator
// create and initialize a new Rational object
public Rational(int numerator, int denominator) {
if (denominator == 0) {
throw new RuntimeException("Denominator is zero");
}
int g = gcd(numerator, denominator);
num = numerator / g;
den = denominator / g;
}
// return string representation of (this)
public String toString() {
if (den == 1) {
return num + "";
} else {
return num + "/" + den;
}
}
// return (this * b)
public Rational times(Rational b) {
return new Rational(this.num * b.num, this.den * b.den);
}
// return (this + b)
public Rational plus(Rational b) {
int numerator = (this.num * b.den) + (this.den * b.num);
int denominator = this.den * b.den;
return new Rational(numerator, denominator);
}
// return (1 / this)
public Rational reciprocal() {
return new Rational(den, num);
}
// return (this / b)
public Rational divides(Rational b) {
return this.times(b.reciprocal());
}
/** ***********************************************************************
* Helper functions
************************************************************************ */
// return gcd(m, n)
private static int gcd(int m, int n) {
if (0 == n) {
return m;
} else {
return gcd(n, m % n);
}
}
/** ***********************************************************************
* Test client
************************************************************************ */
public static void main(String[] args) {
Rational x, y, z;
// 1/2 + 1/3 = 5/6
x = new Rational(1, 2);
y = new Rational(1, 3);
z = x.plus(y);
System.out.println(z);
// 8/9 + 1/9 = 1
x = new Rational(8, 9);
y = new Rational(1, 9);
z = x.plus(y);
System.out.println(z);
// 4/17 * 7/3 = 28/51
x = new Rational(4, 17);
y = new Rational(7, 3);
z = x.times(y);
System.out.println(z);
// 203/16957 * 9299/5887 = 17/899
x = new Rational(203, 16957);
y = new Rational(9299, 5887);
z = x.times(y);
System.out.println(z);
// 0/6 = 0
x = new Rational(0, 6);
System.out.println(x);
}
public int compareTo(final Rational a, final Rational b) {
return b.compareTo(a);
}
@Override
public int compareTo(Rational arg0) {
// TODO Auto-generated method stub
return 0;
}
}
【问题讨论】:
-
您的 Rational 课程在哪里?提供确切答案的代码。
标签: java