In this exercise, you need to implement a queue in C#. A queue is a data structure that follows the FIFO (First In, First Out) principle, meaning the first element to enter is the ...
In this exercise, you need to implement a stack in C#. A stack is a data structure that follows the LIFO (Last In, First Out) principle, meaning the last element to enter is the fi...
In this exercise, you need to create a string queue using the Queue class that already exists in the DotNet platform. The Queue class is an implementation of the queue data structu...
n this exercise, you will create a program that reads a Reverse Polish Notation (RPN) expression from a text file. RPN is a mathematical notation in which every operator follows al...
In this exercise, you will create and manipulate a list of strings using the ArrayList class in C#. The ArrayList class provides a flexible way to store collections of objects with...
In this exercise, you will create a program that reads a text file, reverses the order of its lines, and writes the reversed content into a new output file. This exercise is design...
In this exercise, you will create an interactive C# program that allows users to enter an unlimited number of numeric values. Additionally, the user will be able to execute specifi...
In this exercise, you will implement a basic text file reader in C# that displays 21 lines of text at a time. The program will allow users to navigate through the file using the up...
In this exercise, you will create a dictionary using a hash table in C#. The goal of this task is to practice implementing a hash table, a highly efficient data structure used for ...
In this exercise, you need to implement a function that checks whether a sequence of parentheses is balanced. A sequence of parentheses is considered balanced if every opening pare...
In this exercise, you will create a program that reads the contents of two different text files, merges them into a single collection, and then sorts the collection alphabetically....
In this exercise, you will create a structure called "Point3D" that represents a point in 3D space with three coordinates: X, Y, and Z. You will then create a program with a menu t...
In this exercise, you will create a program that reads the content of a text file and saves it into an ArrayList. The program will then ask the user to enter a word or sentence and...