Hecho de otro modo, pero también el resultado no es correcto.
Código PHP:
Ver original/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pruebas;
import java.io.*;
import java.util.*;
/**
*
* @author Joan
*/
public class Pruebas {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//ArrayList<Integer> histo = new ArrayList<Integer>();
int i=0;
//int[] histo = new int[i];
//int[] hist2 = new int[15];
try {
archivo
= new File("c:\\ficheros\\fichero.txt");//"archivo.txt" es el archivo que va a leer String linea, f1=("c:\\ficheros\\fichero.txt");
FileReader fr = new FileReader (archivo);
BufferedReader br = new BufferedReader(fr);
Scanner sc
= new Scanner
(new File(f1
));
int j,a=0;
estadisticas(sc);
sc.close();
fr.close();
}
catch(IOException a){
}
}
}
static void estadisticas(Scanner s) {
// ArrayList<Integer> histo = new ArrayList<Integer>();
int[] hist2 = new int[15];
int nPalabras = 0, nChars = 0, i = 0, u1=0, c=0;
String p=null;
while (s.hasNext()){
nPalabras++;
nChars+=p.length();
for(i=0;i<16;i++){
if(p.length()==i){
u1++;
hist2[i]=u1;
}
//hist2[i]=u1;
//histo.add(u1);
}
}
System.out
.println
("Numero total de palabras: " + nPalabras
);
for(i=0;i<16;i++){
System.out
.println
("Palabras de logitud "+i
+": "+hist2
[i
]); }
}
}
Otro intento erróneo. No se como hacer que cuente bien. :(
Código PHP:
Ver original/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pruebas;
import java.io.*;
import java.util.*;
/**
*
* @author Joan
*/
public class Pruebas {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//ArrayList<Integer> histo = new ArrayList<Integer>();
int i=0;
//int[] histo = new int[i];
//int[] hist2 = new int[15];
try {
archivo
= new File("c:\\ficheros\\fichero.txt");//"archivo.txt" es el archivo que va a leer String linea, f1=("c:\\ficheros\\fichero.txt");
//FileReader fr = new FileReader (archivo);
//BufferedReader br = new BufferedReader(fr);
Scanner sc
= new Scanner
(new File(f1
));
int j,a=0;
estadisticas(sc);
sc.close();
//fr.close();
}
catch(IOException a){
}
}
}
static void estadisticas(Scanner s) {
// ArrayList<Integer> histo = new ArrayList<Integer>();
int[] hist2 = new int[16];
int nPalabras = 0, i = 0, u1=0;
String p=null;
while (s.hasNext()){
nPalabras++;
for(i=1;i<=16;i++){
if(p.length()==i){
u1++;
//hist2[i]=u1;
}
while(p.length()==i||i!=16){
hist2[i]=u1;
}
}
}
System.out
.println
("Numero total de palabras: " + nPalabras
);
for(i=1;i<16;i++){
System.out
.println
("Palabras de logitud "+i
+": "+hist2
[i
]); }