Coders Packet

Listing of packets of source code submitted by coders

converting documents using Java application

This projects deals with the conversion of documents with different formats : html, xps, doc, docx to pdf.

Tic-Tac-Toe Game using Java

This is a simple Tic-Tac-Toe game developed in Java using the Function, Array, and Conditional and Logical operator.

All permutations of a string in C++

The program permutations of a string accept one string and produce all the possible permutations of it using recursion and backtracking. Here the problem is approached using C++.

Calculate electricity bill using Java

We are going to build java program that calculate electrity bill based on the given units.

RUN-LENGTH ENCODING IN JAVA

In this Java tutorial, we will see run-length encoding. It is a form of data compression in which data(input) characters are stored and counted.

Kadane's algorithm in C++

It is an algorithm that is to find maximum subarray problems. It is based on dynamic programming.

Number guessing game in C++

It is an interesting game in which we have to guess the number in a given range. If a person chooses right he won otherwise lose

Shortest Job First scheduling algorithm in Java

In this project shows the programmatic implementation of Shortest Job First Scheduling Algorithm in Java. Here we calculated the Average waiting time and Average Turn Around Time.

QUERY OCCURRENCES IN STRING IN JAVA

Hello, in this tutorial we will take a collection of string & query arrays & determine the occurrence of query array elements in the string array.

N-Queen problem using Java

Return a binary matrix that gives 1s for the block where queens are placed. We use Backtracking to solve this problem

Indian Flag in C++

Indian Flag in C++ using the OpenGL Utility Toolkit and GLUT library. (Computer Graphics Program)

CRC Code Generator in Java

CRC stands for cyclic redundancy check. In this project, I have used eclipse as an IDE. Mainly CRC is focused on Bits manipulation.