2016-12-05 15 views
0

私は候補者によって得られた投票をソートする際にアルファベット順に候補名をソートしようとしています。 「Tは、それがソートここ を助けてください作る私のコードです:候補者のリストを作成し、それらを並べ替える異なるデータ型の配列を並べ替える方法

public class Candidate implements Comparable<Candidate> { 
    private String name; 
    private int votes; 

    public Candidate(String name, int votes) { 
     this.name = Objects.requireNotNull(name); 
     this.votes = votes; 
    } 

    // Getters and setters 

    @Override 
    public int compareTo(Candidate that) { 
     int c = this.name.compareTo(that.name); 
     if(c != 0) return c; 
     return this.votes - that.votes; 
    } 
} 

次:

package com.sarga.Swinglearn; 
import java.util.Scanner; 

public class Project3 { 

public static void main(String[] args) 
{ 

    int i=0,j=0; 
    Scanner s=new Scanner(System.in); 
    System.out.println("Enter number of candidates"); 
    int candcount = Integer.parseInt(s.nextLine()); 
    System.out.println("Enter name of the candiadates"); 
    String names[]=new String[candcount];//create an array 
    for(i=0;i<names.length;i++) 
    { 
     names[i]=s.nextLine(); 
    } 
    System.out.println("candidates are: "); 
    for(i=0;i<candcount;i++) 
     System.out.println(names[i]); 
    for(i=0;i<candcount;i++) 
    { 
     for(j=i;j<candcount;j++) 
     { 
      if(names[i].compareTo(names[j])>0) 
      { 
       String temp=names[i]; 
       names[i]=names[j]; 
       names[j]=temp; 
      } 
     } 
    } 
    /*To sort names alphabetically*/ 
    System.out.println("alphabetical order of candidates"); 
    for(i=0;i<candcount;i++) 
    { 
     System.out.println(names[i]); 
    } 
    System.out.println("Enter number of votes of each candidate"); 
    int votes[]=new int[candcount]; 
    for(i=0;i<candcount;i++) 
    { 
     votes[i]=s.nextInt(); 
     System.out.println(names[i]+":"+votes[i]); 
    } 
    //sort names based on their votes 
    System.out.println("List of candidates according to their votes"); 
    //int max= votes[1]; 
    int temp=0; 
    for(i=0;i<candcount-1;i++) 
    { 
     for(j=i;j<candcount;j++) 
     { 
      if(votes[i]<votes[j]) 
      { 
      temp=votes[i]; 
      votes[i]=votes[j]; 
      votes[j]=temp; 
      } 
     } 
    } 
    for(i=0;i<candcount;i++) 
    System.out.println(names[i]+":"+votes[i]); 
    s.close(); 
} 

} 
+3

public class Candidate implements Comparable<Candidate> { public String name; /* should use getter and setter */ public int votes; /* idem */ public int compareTo(Candidate other) { /* implements the comparison, see Comparable doc */ } } 

その後、あなたのメインの中に候補配列をソート。次に、その型の配列を作ることができます。そして、投票数でソートすると、名前の正しい順序が得られます。 Btw:配列に[Sort](https://docs.oracle.com/javase/8/docs/api/java/util/Arrays.html#sort-T:A-java.util.Comparator-)があります。 -Class – Fildor

+3

名前と投票をカプセル化して 'ArrayList'に格納する新しいオブジェクトを作成し、カスタムコンパレータで' Collections.sort'を使用します – GurV

答えて

0

あなたはオブジェクト指向のパラダイムを使います。 Comparableインタフェースを実装Candidateクラスを作成します。私はあなたが名前を保持するクラスを作成し、投票カウントを示唆

Candidate[] candidates = new Candidate[candcount]; 
/* populates the array */ 
Arrays.sort(candidates); 
1

Candidateクラスを作成します

List<Candidate> clist = new ArrayList<>(); 
// Add some Candidates to clist 
Collections.sort(clist); 
関連する問題