Code Packets
Browse all published coding projects
Tree Traversals (Inorder, Preorder and Postorder) In C++
This packet contains the all the three tree traversals like Inorder, Preorder, and Postorder traversals in C++ programming language.
Dynamic Programming explained through the Fibonacci series example in C++
We will consider the problem to find the N-th Fibonacci number and solve it through recursion and then by using dynamic programming in two different ways(Memoization and Tabulation)
Flight Price Prediction using Machine Learning and Python
Flight price prediction is going to predict the price of the trip. I have designed this project using Machine learning and Python. Machine Learning Algorithm i.e Random Forest Regressor.
Capturing face of a person using Python OpenCV.
In this project, we will learn how to detect the face of a person and save photos of the face on our device using the Python OpenCV library.
Security System Application using C ++
This is a small project using C++ showcasing a security system application, which allows users to change the existing password by the new one and access the file data by the existing password.
Implementation of Priority Queues using Java
Using Java programming language, both Minimum Priority Queue and Maximum Priority Queue were implemented (using heaps).
Flight Seat Booking Programme in C++
Flight seat booking is a very simple packet that features class along with the object of C++ language.
Contact Management (C++)
This project(C++), involves all types of features from which we can handle contact-related info like we can add a name, email, and phone number.
Implementation of Dijkstra algorithm using Java
In this tutorial, we will learn about the Dijkstra algorithm and we will also see the program to implement the Dijkstra algorithm using Java.
Creating a Puzzle Game 2048 In C++
Hi friends, Today let us see how to create a single-player sliding puzzle game 2048 using C++.
Crop Image Using Python
A simple python program to take an image as input and print and the required cropped image using Pillow library.
strchr() function in C++
In this tutorial, we will learn about strchr() function in C++. It is a predefined function and is present in the cstring header file.