Peter Abraham (peterabraham)

peterabraham

Geek Repo

Location:Toronto, Canada

Github PK Tool:Github PK Tool

Peter Abraham's repositories

Gauss-Jordan-Elimination

C++ implementation to find the inverse of matrix using Gauss-Jordan elimination.

Language:C++Stargazers:6Issues:0Issues:0

PeteSlang

SLANGFOR.net was originally written to teach the art compiler construction among the amateur programmers. PeteSlang is an attempt to port SLANGFOR.net into C++.

slang4JVM

Slang's java port with bytecode generation support

Language:JavaStargazers:1Issues:2Issues:0

TacticalApproach

The Folder contains file which will help one to learn a new programming language

Language:Jupyter NotebookLicense:MITStargazers:1Issues:0Issues:0

Arduino_LCDShield-Basic

A simple Program to understand the working of color LCD shield with an Arduino.

Language:ArduinoStargazers:0Issues:1Issues:0

Arduino_LDR-Emergency-Lighing

Circuit to Glow an LED when light turns off.

Language:ArduinoStargazers:0Issues:0Issues:0

Arduino_Servo-Motor-Simple-Rotation

An illustrative program to rotate a servo motor using an Arduino from 0 to 180 degree and then back to 0 degree. For the servo motor the Arduino IDE contains a library the abstracted all the servo related functionalities. Servo motor is usually connected with the dedicated PWM pins of Arduino for input pulse.

Language:ArduinoStargazers:0Issues:0Issues:0

AVLTree

Adelson-Velsky and Landis tree is a self-balancing binary search tree. The AVL tree implemented here is accepting integer key value. The operations supported are Insertion and Deletion. The key point when compared to a Binary tree is, the AVL tree self-balance the node height using a technique called Rotation. The tree implemented here perform 4 kinds of rotation namely right rotation, left rotation, right left rotation and left right rotation.

Language:C++Stargazers:0Issues:2Issues:0

BinaryTree

Implementation of a simple binary tree in C++.

Language:C++Stargazers:0Issues:2Issues:0

Contacts

Contacts App is a cross-platform contact management application created for the learning purpose with limited features to store all contacts of an individual. This application is made to create a client-server reference architecture for a desktop application using Python-PostgresSQL as backend and QT-C++ as frontend.

Language:C++License:MITStargazers:0Issues:0Issues:0

CPP-Reactive-Programming

C++ Reactive Programming, published by Packt

Language:C++License:MITStargazers:0Issues:0Issues:0
Stargazers:0Issues:0Issues:0

Doubly_LinkedList

This is a doubly linked list written in C++. Doubly linked list means each node points to it's next and previous elements. The operations supported are Insertion, Delete a node using position index and value, Delete all nodes and print all nodes values.

Language:C++Stargazers:0Issues:0Issues:0

DynamicProgramming

This repository is inspired by the course available on FreeCodeCamp.org to teach Dynamic Programming .

Language:C++License:MITStargazers:0Issues:0Issues:0

FactorizeAlgo

This repository is an algorithm to find out the n number of factors(unique) of another input number. The factors need not to be an integer but should be unique. This not a advised solution, but seems OK for me based on the problem statement which I have decided to write this algorithm.

Language:C++Stargazers:0Issues:1Issues:0

Singly_LinkedList

This is a single ended Linked list written in C++. Insertion, Delete nodes by position and value and Delete all nodes are the operations added.

Language:C++Stargazers:0Issues:0Issues:0

Stack

Stack implemented using standard array and linked list. Templates are used here to get generalization for the data in stack.

Language:C++Stargazers:0Issues:0Issues:0