Implementing a stack using array VB.Net Exercise - Visual Basic Programming Course


 Exercise

Implementing a stack using array

Objetive

Implementing a stack

Code

Imports System
Namespace StackInt
    Class Program
        Private Shared Sub Main(ByVal args As String())
            Dim depurando As Boolean = True
            Dim miPila As Pila = New Pila(5)
            miPila.Apilar(4)
            miPila.Apilar(5)
            Console.WriteLine(miPila.Desapilar())
            Console.WriteLine(miPila.Desapilar())
            If depurando Then Console.ReadLine()
        End Sub
    End Class

    Class Pila
        Private valor_actual As Integer
        Private cantidad_valores As Integer
        Private valores_pila As Integer()

        Public Sub New(ByVal cantidad_valores As Integer)
            valor_actual = 0
            Me.cantidad_valores = cantidad_valores
            valores_pila = New Integer(cantidad_valores - 1) {}
        End Sub

        Public Sub Apilar(ByVal valor As Integer)
            If valor_actual < cantidad_valores Then
                valores_pila(valor_actual) = valor
                valor_actual += 1
            End If
        End Sub

        Public Function Desapilar() As Integer
            If valor_actual > 0 Then
                valor_actual -= 1
                Return valores_pila(valor_actual)
            End If

            Return 0
        End Function
    End Class
End Namespace

More VB.Net Exercises of Dynamic Memory Management

 Implementing a queue using array
Implementing a queue...
 Queue Collections
Create a string queue using the Queue class that already exists in the DotNet platform....
 Queue Stack Reverse Polish Notation
Create a program that reads a Reverse Polish Notation expression from a text file, for example: 3 4 6 5 - + * 6 + (Result 21) Each item will be...
 ArrayList
Create a string list using the ArrayList class that already exists in the .NET platform. Once created, display all the items stored in the list. In...
 ArrayList duplicate a text file
Create a program that reads from a text file and stores it to another text file by reversing the order of lines. For example, an input text file li...
 Unlimited sum
Create a program to allow the user to enter an unlimited amount of numbers. Also, they can enter the following commands: "sum", to display the sum of...
 ArrayList - Text file reader
provide your basic text file reader here, which displays 21 lines of text and allows the user to navigate using the up and down arrow keys, and exit u...
 Hast Table - Dictionary
Submit your dictionary here using a hash table....
 Parenthesis
Implement a function to check if a sequence of open and closed parentheses is balanced. In other words, check if each open parenthesis corresponds to ...
 Mix and sort files
Create a program that reads the contents of two different files, merges them, and sorts them alphabetically. For example, if the files contain: "Dog C...
 ArrayList of Points
Create a structure named "Point3D" to represent a point in 3D space with coordinates X, Y, and Z. Create a program that has a menu where the user c...
 Search in file
Create a program that reads a text file, saves its content to an ArrayList, and asks the user to enter sentences to search within the file. The pro...


Juan A. Ripoll - Systems Tutorials and Programming Courses © 2024 All rights reserved.  Legal Conditions.