Code Packets
Browse all published coding projects
Double Linked List using C++
This project is the implementation of the double-linked list using C++. It performs various operations on the list.
Bus Reservation System using C++
Traveling is a large growing business across all countries. This C++ bus reservation system deals with maintenance of information like schedule and details of each bus.
First And Follow Using C++
First And Follow in C++ is used so that the parser can apply the production rule easily at the correct position.
Parking Management System In C++
Parking management system will help to manage parking lots . It will help us to view which parking lot number is vacant or occupied and calculate the bill amount.
Program to check whether a year is Leap Year or not in C++
Hello Readers!! Today, we will learn how to check whether a year is a leap year or not in C++.
Grundy Numbers Concept in Game Theory (C++)
Grundy Number is a number used in Game theory which defines the state of the game. Through this concept we can define a impartial game like the (Game of Nims) in terms of Grundy.
YouTube Downloader in Python Using Tkinter and Pytube
YouTube Downloader in Python with GUI support using Tkinter. Can Convert mp4 into mp3, Ogg, Wav file.
Plotting of Heatmap and Pairplot in Python using CSV
The code will use a CSV file and plot Heatmap and Pairplot in Python. Colored blocks and visual implementation of the graph are observed in the output.
Top 15 code packets/snippets for web development applications
The packet contains the 15 most important code snippets that can be useful for web applications.
Password Generator with user info in GUI Tkinter Python
What this code in Python does is, it will generate a password of length the user wants using his details which would be more relatable to him.
Length Converter Using GUI Tkinter in Python
The code will make a GUI window in Python that would ask a user to input the length. The user will get values in different units when asked to convert.
Z Algorithm Implementation in C++
Z Algorithm is a pretty fast Pattern Matching Algorithm. It searches for a pattern in a text, and its time complexity is O(m+n). I have implemented the Z-algorithm in c++.