100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada
logo-home
AFN Y AFND 7,49 €
Añadir al carrito

Notas de lectura

AFN Y AFND

 3 vistas  0 veces vendidas

EJERCICIOS DE AFN Y AFND

Vista previa 3 fuera de 21  páginas

  • 27 de agosto de 2021
  • 21
  • 2019/2020
  • Notas de lectura
  • ---
  • Todas las clases
Todos documentos para esta materia (9)
avatar-seller
messipro1239
Ejercicio 1)

INICIO
RecursividadEstructura(Nodo)
SumaIzq = 0
SumaDer= 0
HijoIzquierdo = irHijoIzquierdo(Nodo)
SI <HijoIzquierdo != null > ENTONCES HACER
PostOrder( irHijoIzquierdo( Nodo ) )
SumaIzq = irHijoIzquierdo(Nodo).costoEstructura
FIN SI

SI <tieneHijoDerecho( Nodo )
PostOrder( irHijoDerecho( Nodo) )
SumaDer = irHijoDerecha(Nodo).costoEstructura
FIN SI
Nodo.costoEstructura =(Nodo.costoPropio * Nodo.cantidad)+ SumaIzq + SumaDer
FIN RecursividadEstructura()

Lista = ObtenerRaices()
Nodo = InicioL(Lista);

HACER MIENTRAS <Nodo != null>
RecursividadEstructura(Nodo)
Nodo = MoverENL()
FIN MIENTRAS
FIN


Ejercicio 2)

AUTO


public class Auto{
String patente ;
String fecha;
public Auto(String fechax,String Matricula){
patente = Matricula;
fecha = fechax;

}
public String toString() {
String tostring ="Auto Matricula: "+ patente +" Fecha y Hora: "+ fecha ;
return tostring;
}
public String getPatente() {
return patente;

, }
public void setPatente(String patente) {
this.patente = patente;
}
public String getFecha() {
return fecha;
}
public void setFecha(String fecha) {
this.fecha = fecha;
}

}

Linkedin Cola

import java.util.LinkedList;

public class ColaLKL {
private LinkedList<Auto> linkedin;
public ColaLKL() {
linkedin = new LinkedList<Auto>();
}
public boolean estaVacia() {
if(linkedin.size() != 0) {
return false;
}else {
return true;
}
}

public void vaciar(){
linkedin.clear();
}

public int largo() {
return linkedin.size();
}

public Auto verPrimero() {
return linkedin.peekFirst();
}

public Auto verUltimo() {
return linkedin.peekLast();
}

public void enfilar(Auto n) {
linkedin.offer(n);

, }
public void sacar(int n) {
linkedin.remove(n);
}


public LinkedList<Auto> getLinkedin() {
return linkedin;
}
public void setLinkedin(LinkedList<Auto> linkedin) {
this.linkedin = linkedin;
}


}




INTERFAZ GUI

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.JLabel;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JTextField;
import java.awt.Font;
import java.awt.Color;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
// Los import que uso son de GUI y de comparacion de fechas

//**IMPORTANTE** utilizo la fecha 16/11/2000 como fecha actual. Esto lo hago de esta
manera
//Ya que asi puedo mediante el GUI simular los dias y poder mostrar los registros de cada
dia
//Podria usar import java.util.Date pero en este caso los dias no podria simularlos ya que
//utilizaria el dia actual.

public class AutoLavado {

private JFrame frame;
private JTextField DiaLavado;

Los beneficios de comprar resúmenes en Stuvia estan en línea:

Garantiza la calidad de los comentarios

Garantiza la calidad de los comentarios

Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!

Compra fácil y rápido

Compra fácil y rápido

Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.

Enfócate en lo más importante

Enfócate en lo más importante

Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable. Así llegas a la conclusión rapidamente!

Preguntas frecuentes

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

100% de satisfacción garantizada: ¿Cómo funciona?

Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.

Who am I buying this summary from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller messipro1239. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy this summary for 7,49 €. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

45,681 summaries were sold in the last 30 days

Founded in 2010, the go-to place to buy summaries for 15 years now

Empieza a vender
7,49 €
  • (0)
Añadir al carrito
Añadido