Pinned Repositories
internships
Salfny
Connect_4_AI
Online-Book-Store
8-Puzzle-Game
8-Puzzle Game Solver
Caltrain-Synchronization-and-Mutual-Exclusion-
GameEngine
Instabug-Backend-Summer2022-Intern-Phase2
LeetCode_DailyChallenge_2023
LeetCode Daily Challenge Solutions
Max_Heap
MaiAhmedHussein's Repositories
MaiAhmedHussein/Max_Heap
MaiAhmedHussein/Red-Black-Tree
MaiAhmedHussein/AVL-Tree-based-English-Dictionary
MaiAhmedHussein/Fitt-s-Law
MaiAhmedHussein/SolveEquations
Solve Linear and Non-Linear Equations
MaiAhmedHussein/Polynomial-Solver
A linked allocation system to represent and manipulate polynomials. Each term of the polynomial will be represented as a node, using its coefficient and exponent. Assume that you have 3 available polynomial variables: A, B and C, which can be set by the user and one variable R that acts as an accumulator for the results of operations on other polynomials. The polynomial terms are in descending order by the exponent. A polynomial can have a negative exponent.
MaiAhmedHussein/Data-Structure-Implementation
Data Structure Implementation
MaiAhmedHussein/Chess
Chess is a board game for two players. It is played in a square board, made of 64 smaller squares, with eight squares on each side. Each player starts with sixteen pieces: eight pawns, two knights, two bishops, two rooks, one queen and one king. The goal of the game is for each player to try and checkmate the king of the opponent. “CHECKMATE” is a threat ('check') to the opposing king which no move can stop. It ends the game.
MaiAhmedHussein/Postfix-Converter
A JAVA program that takesa symbolic infix expression as inputand converts it to postfix notation, enter the valuesof each symbol, evaluates the postfixexpression and outputs the resulting expression andits value.