Java使用Comparable解決排序問題_java

來源:互聯網
上載者:User

本文執行個體講述了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;}@Overridepublic 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程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.