| Title | Posted By | Posted Date |
| color palette | gowri shankar | 08 Nov 2009 |
color palette using java platform
|
| TOKEN SEPARATION | RoseNinja | 15 Oct 2009 |
Separating the tokens from the given string of expressions
|
| FIRST COME FIRST SERVE SCHEDULING | RoseNinja | 15 Oct 2009 |
This program is used to assign resources to the process which comes first.
|
| Telephone Directory in C++ | prakash bhatnager | 06 Oct 2009 |
Telephone Directory in C++
|
| Project to Compute the Marks and the Grades in ABAP | VELU S | 14 Sep 2009 |
Project to Compute the Marks and the Grades in ABAP
|
| Using System Fields along with Case Statements | VELU S | 14 Sep 2009 |
Adding Additional System Fields with case Statements in ABAP
|
| Screen Programming Project - SAP | VELU S | 12 Sep 2009 |
A Simple dinamically changing Calculation on Screen Programming in SAP using Call Screen Methodologies
|
| Module Pool Mathematical Calculation in ABAP-SAP | VELU S | 12 Sep 2009 |
Simple Program using Advance Business Application Programming on Addition, Subtraction multiplication and Division.
|
| Dynamic < Run Time > Memory Allocation | PRITESH | 06 Sep 2009 |
Example of Runtime Memory allocation using MALLOC() & CALLOC()
STRCTURE
|
| Program on Maximum Precipitation Intensity – Duration Relation: | pankaj agarwala | 31 Aug 2009 |
C++ program on Maximum Precipitation Intensity – Duration Relation::for civil students
|
| infix to postfix without parenthesis | PRITESH | 30 Aug 2009 |
write a C progrramme to convert infix into postfix without parenthesis
|
| A Real Dictionary using TRIES Data Structure | Saurabh | 29 Aug 2009 |
This project is a true implementation of the Dictionary unlike the Binary search tree. It works on the same principle of finding words as we humans Do.
|
| STACK | PRITESH | 27 Aug 2009 |
C programme to add element , remove , finding , display ,
called Push ,Pop ,Peep ,Change ,Display
|
| KNAPSACK PROBLEM | Rashina | 26 Aug 2009 |
Definition: Given items of different values and volumes, find the most valuable set of items that fit in a knapsack of fixed volume.
fractional knapsack problem(classic problem) :
Given materials of different values per unit volume and maximum amounts, find the most valuable mix of materials which fit in a knapsack of fixed volume. Since we may take pieces (fractions) of materials, a greedy algorithm finds the optimum. Take as much as possible of the material that is most valuable per unit volume.
|
| Define a structure data type named 'date' containing three integer members day, month and year. Deve | Dhananjoy Chakraborty | 25 Aug 2009 |
@ To read data into structure members by a function
@ To validate the date entered by another function
@ To print the date in format May 10,2004 by a function
The input should be three integers( day,month and year). In case of invalid data like 41 4 2004 , the output will be 'April has only 30 days.
|
| WORKING OF UNICAST,MULTICAST,BROADCAST SESSIONS | Rashina | 23 Aug 2009 |
Unicast messaging is used for all network processes where a private or unique resource is requested making most networking traffic Unicast in form. Unicast is used where two way connections are needed to complete the network transaction.Multicast servers can support a larger audience by serving content simultaneously to multiple users.
|
| Merge Sort | Rashina | 23 Aug 2009 |
Divide the array into two halves till single element array is reached.
Merge two sorted sub arrays into a single sorted array
Repeat till all elements are merged into a single array
|
| Writing Data in a File | Rashina | 23 Aug 2009 |
Initializing a file pointer and check for the condition to open and write a file.
|
| DESIGNING OF PAINT BRUSH USING JAVA | Rashina | 21 Aug 2009 |
A top-level window can have a menu bar associated with it. A menu bar displays a list of top-level menu choices. Each choice is associated with a drop-down menu. This concept is implemented in Java by the following classes: MenuBar, Menu, and MenuItem.
|
| Depth First Search-Traversal | Rashina | 21 Aug 2009 |
Produces a sorted list by in-order traversal.
More complex but gives O(log n) behaviour in dynamic cases
|
| simple C Loop | Dhananjoy Chakraborty | 21 Aug 2009 |
Evaluate the following expression S=1+ x + x^2 +x^3+....+x^n
|
| Calender (2) using C++ | Dhananjoy Chakraborty | 21 Aug 2009 |
THIS PROGRAM WILL DISPLAY CALENDER OF ANY
PARTICULAR MONTH OF ANY YEAR SPECIFIED
BY THE USER (AFTER 2003)
|
| calender using C++ | Dhananjoy Chakraborty | 21 Aug 2009 |
THIS PROGRAM WILL DISPLAY CALENDER FROM
1st JANUARY 2003 TO 31st DECEMBER OF ANY YEAR
AS PER THE USER
|
| PROGRAM ON VIRTUAL FUNCTION (C++) | Dhananjoy Chakraborty | 21 Aug 2009 |
use of virtual function in C++
|
| Dijkstra’s Algorithm | Rashina | 20 Aug 2009 |
Finding the shortest path from a source to a destination.
Surprisingly,While finding the shortest path from a source to one destination,
we can find the shortest paths to all over destinations as well!
Common algorithm for single-source shortest paths is due to Edsger Dijkstra
|
| Stack using double linked list | Dhananjoy Chakraborty | 20 Aug 2009 |
Stack using doubly linked list – create stack , push items in it and pop items from it.
|
| Braeking a linked list as per requirements | Dhananjoy Chakraborty | 20 Aug 2009 |
Create a linear linked list and break it into number of lists as per requirements of the user
|
| Data structure through C | Dhananjoy Chakraborty | 20 Aug 2009 |
Program to display a linked list from front side and reverse side
|
| Game Application | Rashina | 20 Aug 2009 |
Designing Game Application using VB code.
VERSION 5.00
Object = "{22D6F304-B0F6-11D0-94AB-0080C74C7E95}#1.0#0"; "msdxm.ocx"
Begin VB.Form Form1
|
| Calculator | Rashina | 20 Aug 2009 |
Designing a simple calculator using JAVA code
|
| linked list | Dhananjoy Chakraborty | 19 Aug 2009 |
deletion of a specific location
|
| linked list | Dhananjoy Chakraborty | 19 Aug 2009 |
deletion of last node
|
| linked list | Dhananjoy Chakraborty | 19 Aug 2009 |
deletion of a node
|
| linked list | Dhananjoy Chakraborty | 19 Aug 2009 |
insertion of a node at specific location
|
| linked list | Dhananjoy Chakraborty | 19 Aug 2009 |
insertion of a new node at last location
|
| link list | Dhananjoy Chakraborty | 19 Aug 2009 |
A C program with suitable functions to insert an element at the beginning of a linked list and delete an element at the end using avail list. :-
|
| circular queue | Dhananjoy Chakraborty | 19 Aug 2009 |
Using header node
|
| stack program using C | Dhananjoy Chakraborty | 19 Aug 2009 |
Enter any postfix expression , the expression will be evaluated and the result will be displayed (e.g if the entered expression is 889*-88*- the result will display –128 )
|
| conversion of infix expression to postfix using C language | Dhananjoy Chakraborty | 19 Aug 2009 |
this project will take any expression in infix and will display it's postfix version
|
| COLORING ALGORITHM | Rashina | 19 Aug 2009 |
// Defines the label, textbox and button for noof vertices
COLORING ALGORITHM uses JAVA code.
|
| calculator code using visualbasic | city | 02 Aug 2009 |
codes for producing calculator using visualbasic
|
| Sample Shellscripting Programme | Amaresh Chandra Das | 28 Jul 2009 |
Featuring calls of sqlplus and ftp from within shell programmes.
|
| Sample Programme for Linklist @ C Programme | Amaresh Chandra Das | 28 Jul 2009 |
sample C linklist programme
|
| Calculator Application using Java | Sachin Shelke | 26 Jul 2009 |
Calculator Application using Java
|
| A Fraction class using C language | Sree.... | 26 Jul 2009 |
A Fraction class that has the ability to add, subtract, multiply, divide and show various statistics of the fraction.
|
| Playing Shuffle Game. | Sree.... | 26 Jul 2009 |
This project is used for Playing Shuffle Game.
|
| Telephone Billing System by using C++ Language | Sree.... | 26 Jul 2009 |
This project is used for Telephone Billing System by using C++ Language.
|
| Assembly Language Program To Read Status Of 8 Input Bits From The Logic Controller Interface | Suraj Nayak | 24 Jul 2009 |
This Is An Alp To Read Status Of 8 Input Bits From The Logic Controller Interface And Display Ff If Even Parity Bits Otherwise Display 00. Also Display
Number Of 1'S In The Input Data.
|
| Assembly language program for Bubble sort | Suraj Nayak | 24 Jul 2009 |
This is a ALP to sort a given array in ascendin order or descending order using the Bubble sort algorithm.
|
| C program Binary Search Tree | pankaj agarwala | 24 Jul 2009 |
C program to INSERT an element, Inorder traversing,Count no of leaf node,find level of a particular element,find the subnode,print element of same LEVEL,
|