Code Packets
Browse all published coding projects
QR code generator using JAVA
This project generates the QR code for the given link using Java programming. In this project technology such as servlet and JSP are used.
Performing Quick Sort Using Randomized Pivot in C++
Hello friends, today we'll bring down worst-case time complexities of quicksort, by combining randomization along with quicksort in C++.
Max priority queue using Python
Implementation of the max priority queue and providing some functions such as getting length, inserting and deletion using Python
Location finder and develops a map Using Python
This is a Python program using which you can find a place using the co-ordinates and develop a map of that current co-ordinate.
User Defined Exception in Java with an example
Hello Learners, in this article, we will learn about how to create a User-defined exception and exception handling in Java
C++ code for marks entry in school/college
In this C++ code, teachers can enter marks of every student only after entering the correct password. And the student can see their report card after entering their roll number.
Predicting the Optimum Value of Clusters in K Means Algorithm in Python.
Predicting the Optimum Value of Clusters in K Means Algorithm with the help of the Elbow method in Python.
Infix to Postfix Expression Converter and Evaluator in C++
The packet eases your work by converting Infix expression to a corresponding Postfix expression structure in C++ and finally evaluating the result of the expression.
Using linear search with templates in C++
C++ templates are used with Linear search to show compile-time polymorphism. Three different data type arrays are used for verification.
Singly linked list using C
In C programming Singly linked list is a linear data structure that has two parts one is the data part and the other is the link part that stores the address of the next node.
Command-line To-do list Application using Argparse library in Python
A Command-line to-do list application built using the 'Argparse' library of Python that allows users to keep a record of to-do and done tasks and run commands using the terminal.
Longest Palindromic substring in a given String using C++
When the user inputs any string, it gives the longest palindromic substring of the given string( case sensitive ) efficiently using C++ programming language.