viewing paste Codigo | C#

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            Cuarto = new Almacen(3, 5);
 
 
            Cuarto.AgregarCaja(1, "RED");
            Cuarto.AgregarCaja(2, "RED");
            Cuarto.AgregarCaja(3, "RED");
            Cuarto.AgregarCaja(4, "RED");
            Cuarto.AgregarCaja(5, "RED");
            Cuarto.AgregarCaja(6, "RED");
            Cuarto.AgregarCaja(7, "RED");
            Cuarto.AgregarCaja(8, "RED");
            Cuarto.AgregarCaja(9, "RED");
            Cuarto.AgregarCaja(10, "RED");
            Cuarto.AgregarCaja(11, "RED");
            Cuarto.AgregarCaja(12, "RED");
            Cuarto.AgregarCaja(13, "RED");
            Cuarto.RemoverCaja(55);
        }
 
        public Almacen Cuarto;
    }
 
 
 
    public class Almacen
    {
        public Contenedor[] Contenedores;
        public Almacen(int Cantidad, int Capacidad)
        {
            Contenedores = new Contenedor[Cantidad];
            for (int i = 0; i < Cantidad; i++)
            {
                Contenedores[i] = new Contenedor(Capacidad);
            }
        }
 
 
        public void AgregarCaja(int ID,string Nombre)
        {
            Caja C = new Caja(Nombre, ID);
            for (int i = 0; i < Contenedores.Length; i++)
            {
                if (Contenedores[i].Count < Contenedores[i].Cap)
                {
                    Contenedores[i].Añadir(C);
                    return;
                }
            }
        }
 
 
        public void RemoverCaja(int ID)
        {
            if (VerificarDisponibilidad(ID))
            {
                int ContenedorOrigen = Buscar(ID);
                if (ContenedorOrigen != -1)
                {
                    Caja[] Reacomodo = Contenedores[ContenedorOrigen].Quitar(ID);
                    if (Reacomodo.Length > 0)
                        for (int R = 0; R < Reacomodo.Length; R++)
                        {
                            for (int i = 0; i < Contenedores.Length; i++)
                            {
                                if (i != ContenedorOrigen)
                                {
                                    if (Contenedores[i].Count < Contenedores[i].Cap)
                                    {
                                        Contenedores[i].Añadir(Reacomodo[R]);
                                        break;
                                    }
                                }
                            }
                        }
                }
            }
        }
 
        public int Buscar(int ID)
        {
            bool busqueda = false;
            for (int i = 0; i < Contenedores.Length; i++)
            {
                busqueda = Contenedores[i].Buscar(ID);
                if (busqueda == true)
                {
                    return i;
                }
            }
            return -1;
        }
 
        public bool VerificarDisponibilidad(int ID)
        {
            int disponiblidad = 0;
            int Contenedor = -1;
            for (int i = 0; i < Contenedores.Length; i++)
            {
                if (Contenedores[i].Buscar(ID) == false)
                {
                    disponiblidad = disponiblidad + (Contenedores[i].Cap - Contenedores[i].Count);
                }
                else
                {
                    Contenedor = i;
                }
            }
            if (Contenedor != -1 && Contenedores[Contenedor].Disponibilidad(ID) <= disponiblidad)
                return true;
            return false;
        }
 
    }
 
 
    public class Contenedor
    {
        public Caja[] Cajas;
        public int Cap = 0;
        public int Count = 0;
 
 
        public Contenedor(int Capacidad)
        {
            Cajas = new Caja[Capacidad];
            Cap = Capacidad;
        }
 
 
        public void Añadir( Caja Obj)
        {
            if (Count < Cap)
            {
                Caja[] newCajas = new Caja[Cap];
                newCajas[0] = Obj;
                int _Count = 1;
                for (int i = 0; i < Cajas.Length -1; i++)
                {
                    newCajas[_Count] = Cajas[i];
                    if (Cajas[i] != null)
                        _Count++;
                }
                Cajas = newCajas;
                Count++;
            }
        }
 
        public Caja[] Quitar(int ID)
        {
            Caja[] Reacomodo = null;
            int Disp = Disponibilidad(ID);
            if (Disp != -1)
            {
                Reacomodo = new Caja[Disp];
                for (int i = 0; i < Cajas.Length; i++)
                {
                    if (i <= Disp)
                    {
                        if (Cajas[i].ID != ID)
                        {
                            Reacomodo[i] = Cajas[i];
                            Cajas[i] = null;
                            Count--;
                        }
                    }
   
                    if (Cajas[i] != null && Cajas[i].ID == ID)
                    {
                        Caja[] NewCajas = new Caja[Cap];
                        Cajas[i] = null;
                        int _count = 0;
                        for (int x = 0; x < Cap; x++)
                        {
                            NewCajas[_count] = Cajas[x];
                            if (Cajas[x] != null)
                                _count++;
                        }
                        Cajas = NewCajas;
                        Count--;
                        return Reacomodo;    
                    }
                }
            }
            return Reacomodo;
        }
 
        public int Disponibilidad(int ID)
        {
            for (int i = 0; i < Cajas.Length; i++)
            {
                if (Cajas[i].ID == ID)
                {
                    return i;
                }
            }
            return -1;
        }
 
        public bool Buscar(int ID)
        {
            for (int i = 0; i < Cap; i++)
            {
                if (Cajas[i] != null && Cajas[i].ID == ID)
                    return true;
            }
            return false;
        }
    }
 
 
    public class Caja
    {
 
        public string Nombre = "";
        public int ID = 0;
 
        public Caja(string nombre, int id)
        {
            Nombre = nombre;
            ID = id;
        }
    }
Viewed 588 times, submitted by Guest.