Java應用Comparable處理排序成績。本站提示廣大學習愛好者:(Java應用Comparable處理排序成績)文章只能為提供參考,不一定能成為您想要的結果。以下是Java應用Comparable處理排序成績正文
本文實例講述了Java應用Comparable處理排序成績的辦法。分享給年夜家供年夜家參考。詳細完成辦法以下:
一次舉重比賽的競賽規矩是:選手的成就以勝利舉起的總分量來排序,舉起總分量多的排在後面;當舉起總分量雷同時,依照體重來排序,體重輕的排在後面;請求法式讀取數據文件作為輸出,並依照上述規矩排序後,打印出選手編號;數據文件解釋以下:現有5名選手,其選手編號、勝利舉起的總分量及其體重如數據文件data4.txt,樣例內容為:
<p> <no>1</no> <lw>140</lw> <bw>54</bw> </p> <p> <no>2</no> <lw>155</lw> <bw>53</bw> </p> <p> <no>3</no> <lw>140</lw> <bw>42</bw> </p> <p> <no>4</no> <lw>140</lw> <bw>55</bw> </p> <p> <no>5</no> <lw>130</lw> <bw>46</bw> </p>
起首我要處理的是文件解析的成績:
若何把文件內容解析成想要的數據:即提掏出每一個選手的編號,成就和體重
我用一個實體Person來封裝這些屬性
全體代碼:
import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; public class forth { public static void main(String[] args) { ArrayList<Person> list=new ArrayList<Person>(); try { FileReader fr=new FileReader("c:\\data.txt"); BufferedReader br=new BufferedReader(fr); String str=null; int num=0; int score=0; int weight=0; int i=0; while((str=br.readLine())!=null) { i++; if(i%5==2) { str=str.trim().substring(4,str.length()-5); num=Integer.parseInt(str); str=br.readLine().trim(); str=str.substring(4,str.length()-5); score=Integer.parseInt(str); i++; str=br.readLine().trim(); str=str.substring(4,str.length()-5); weight=Integer.parseInt(str); i++; Person p=new Person(num,score,weight); list.add(p); } else continue; } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } Person[] plist=new Person[list.size()]; list.toArray(plist); Arrays.sort(plist); for(int i=0;i<plist.length;i++) { System.out.print(plist[i].getNum()+". " +plist[i].getScore()+" "+plist[i].getWeight()+"\n\r"); } } } class Person implements Comparable<Person>{ private int num; private int weight; private int score; public Person(int num,int score,int weight){ this.num=num; this.score=score; this.weight=weight; } @Override public int compareTo(Person other) { if(this.score>other.score)return -1; else if(this.score<other.score) return 1; else return this.weight>other.weight?1:-1; } public int getNum() { return num; } public void setNum(int num) { this.num = num; } public int getWeight() { return weight; } public void setWeight(int weight) { this.weight = weight; } public int getScore() { return score; } public void setScore(int score) { this.score = score; } }
願望本文所述對年夜家的java法式設計有所贊助。