Saturday, June 29, 2013

CPU Scheduling Algorithm : Shortest Remaining Time [Version 2] C++

  No comments
June 29, 2013
srt1
Hi guys, after the the first version of C implementation of CPU Scheduling Algorithm Shortest Remaining Time by my friend,...
Read More

Sunday, September 16, 2012

3D Cube using HTML5 CSS3

  No comments
September 16, 2012
3d-cube-using-html5
3D Cube using HTML5/Pure CSS3 No JavaScript View Demo :  3D Cube using HTML5 and...
Read More

Sunday, January 22, 2012

C implementation of FCFS, SJF, ROUND ROBIN

  No comments
January 22, 2012
#include<stdio.h>typedef struct process{int id;int wait;int burst;};struct process pro[10];struct process temp[20];table(struct process pro[],int nop);gantt(struct process pro[],int nop);int getdata();incwait(int tempburst,int id);init();int nop;main(){struct process tmppro;int choice,quantum;int...
Read More

Friday, April 15, 2011

Binary Tree Array

  No comments
April 15, 2011
import java.util.Scanner;class NodeBT{    int info;    boolean used;}public class BinaryTreeArray{    NodeBT node[]=new NodeBT[20];    void MakeTree(int val)    {        node[0]=new NodeBT();       ...
Read More

Binary Tree with Traversels– InOrder, PreOrder, PostOrder – (Recursive& Non-Recursive)

  No comments
April 15, 2011
import java.util.Scanner;import java.util.Stack;public class Node{    int info;    Node next,prev;    Node left,right;}public class BinaryTree{    Node Insert(int val)    {        Node t=new...
Read More

Merging two Link List

  No comments
April 15, 2011
import java.util.Scanner;import java.util.Stack;public class MergeList{    public static void main(String[] args)    {        Scanner in = new Scanner(System.in);        SingleLL s1=new SingleLL();       ...
Read More

Circular Queue

  No comments
April 15, 2011
import java.util.*;public class CircularQueue{    int front,rear,size=5;    int a[]=new int[size];    CircularQueue()    {        front=rear=size-1;    }    void Insert(int...
Read More