我尝试了不同的方法来获取用户的输入序列,但不知道该怎么做。这是我的代码。大小为 N 的数组 A 中的多数元素是出现超过 N/2 次的元素。例如 (3,3,4,2,4,4,2,4,4) 有一个多数元素 (4),而数组 (3,3,4,2,4,4,2,4) 有没有多数元素。我正在尝试从用户那里获取输入序列。
import java.util.Scanner;
class rough1 {
public static int arrMajority1( int A[] ) {
int n = A.length;
for( int i = 0; i < A.length; i++ ) {
int c = 1;
for( int j = i + 1; j < A.length; j++ )
if( A[ i ] == A[ j ] )
c = c + 1;
if( c > ( A.length / 2 )) {
return A[ i ];
}
}
return -1;
}
public static void main(String[] args){
Scanner input = new Scanner(System.in);
int A[] = new int [];
A[] = input.nextInt();
String employee = "A[]";
String delims = "[,]";
String[] tokens = employee.split(delims);
if (arrMajority1(A) != -1)
System.out.println("The majority element is " + arrMajority1(A));
else
System.out.println("There is no majority element.");
}
}