• Viernes 8 de Noviembre de 2024, 23:06

Mostrar Mensajes

Esta sección te permite ver todos los posts escritos por este usuario. Ten en cuenta que sólo puedes ver los posts escritos en zonas a las que tienes acceso en este momento.


Temas - earango

Páginas: [1]
1
C/C++ / [Código Fuente] Problema ACM resuelto " What's Cryptanalysis? ".
« en: Jueves 27 de Marzo de 2008, 16:21 »
Problema ACM de la pagina http://icpcres.ecs.baylor.edu/onlinejudge/ el enunciado del problema en ingles es el siguiente:

What's Cryptanalysis?

Cryptanalysis is the process of breaking someone else's cryptographic writing. This sometimes involves some kind of statistical analysis of a passage of (encrypted) text. Your task is to write a program which performs a simple analysis of a given text.

----Input  
The first line of input contains a single positive decimal integer n. This is the number of lines which follow in the input. The next n lines will contain zero or more characters (possibly including whitespace). This is the text which must be analyzed.

----Output  
Each line of output contains a single uppercase letter, followed by a single space, then followed by a positive decimal integer. The integer indicates how many times the corresponding letter appears in the input text. Upper and lower case letters in the input are to be considered the same. No other characters must be counted. The output must be sorted in descending count order; that is, the most frequent letter is on the first output line, and the last line of output indicates the least frequent letter. If two letters have the same frequency, then the letter which comes first in the alphabet must appear first in the output. If a letter does not appear in the text, then that letter must not appear in the output.

----Sample Input  

3
This is a test.
Count me 1 2 3 4 5.
Wow!!!!  Is this question easy?

----Sample Output  

S 7
T 6
I 5
E 4
O 3
A 2
H 2
N 2
U 2
W 2
C 1
M 1
Q 1
Y 1

Código: C++
  1. /*
  2. Problema "What's Cryptanalysis?"
  3. de la pagina UVa  Online Judge
  4.  
  5. Resuelto por Esteban Arango Medina
  6. Marzo 2007
  7.  
  8. */
  9.  
  10.  
  11. #include <iostream>
  12. #include <string>
  13. #include <stdio.h>
  14. #include <conio.h>
  15.  
  16. using namespace std;
  17.  
  18. void cryptanalysis(int numero);
  19. void organizar();
  20.  
  21. typedef struct Tletras
  22.       {
  23.       char letraM;
  24.       char letram;
  25.       int veces;
  26.       };
  27.      
  28. struct Tletras letras [26];
  29.  
  30. void cryptanalysis(int numero){
  31.      char txt[100];
  32.      txt[0]=getchar();
  33.      
  34.      for(int i=0; i<numero; i++){
  35.              cout<<"Ingrese la frase: "<<endl;
  36.              for(int n=0;(txt[n]=getchar()) != '\n';++n){
  37.                      for(int i=0;i<26;i++){
  38.                              if(txt[n]==letras[i].letraM || txt[n]==letras[i].letram){
  39.                                       letras[i].veces = letras[i].veces + 1;                  
  40.                                       i=i+26;
  41.                              }
  42.                      }
  43.              }  
  44.      }
  45.      
  46.      
  47. }
  48.  
  49. void organizar(){
  50.      
  51.       int TAM=26;
  52.       struct Tletras temp;
  53.      
  54.       for (int i=1; i<TAM; i++){
  55.           for (int j=0&#59; j<TAM - 1; j++){
  56.               if (letras[j].veces < letras[j+1].veces){
  57.                        temp = letras[j];
  58.                        letras[j] = letras[j+1];
  59.                        letras[j+1] = temp;
  60.               }
  61.           }
  62.       }
  63. }
  64.  
  65.  
  66. int main(int argc, char *argv[]){
  67.    
  68.     int numero=0;
  69.    
  70.     for (int i = 0; i<26;i++){
  71.         letras[i].letraM = (char)('A' + i);
  72.         letras[i].letram = (char)('a' + i);
  73.         letras[i].veces = 0;
  74.     }
  75.    
  76.     cout<<"Ingrese el numero de frases: ";
  77.     cin>>numero;
  78.    
  79.     cryptanalysis(numero);
  80.     organizar();
  81.    
  82.    
  83.     for (int i = 0; i<26;i++){
  84.         if(letras[i].veces != 0){
  85.                cout<<letras[i].letraM<<" "<<letras[i].veces<<endl;
  86.         }
  87.     }
  88.    
  89.     getch();
  90.     return 0;
  91.    
  92.        
  93. }
  94.  

Autor: Esteban Arango Medina

2
Java / [Código Fuente] Juego Sabelotodo
« en: Miércoles 26 de Marzo de 2008, 22:04 »
El juego Sabelotodo es producto del Proyecto final de la materia Fundamentos de programación cursada en el primer periodo del año 2007 por Esteban Arango Medina en el Departamento Ingenieria de sistemas de la Universidad EAFIT. Este juego está realizado mediante el entorno de programación
JAVA, utilizando el programa NetBeans 5.5.

Tiene interfaz grafica, y se puede crear el tablero que el jugador desee, tambien se pueden editar las preguntas. Los tableros y el archivo de preguntas son archivos .txt modificables, los cuales hay que cargar al iniciar el juego.

Espero le sea ultil a alguien.

Autor: Esteban Arango Medina

Páginas: [1]