Home
All posts
Sunday, December 10, 2017
PHP and AJAX
Read more
Saturday, November 11, 2017
Kruskal's Algoritm DAA
Question: Write a program to find the minimum cost of connecting all the engineering colleges in your state using Kruskal's algorithm. ...
Dijkstra’s algorithm.
Question: Write a program to find shortest path from your home to college using Dijkstra’s algorithm. Code: import java.util.ArrayList; ...
Sunday, November 5, 2017
Sutherland PolyGon CLipping
Code: #include<iostream.h> #include<conio.h> #include<graphics.h> #define round(a) ((int)(a+0.5)) int k; float xmi...
Mid Point Eclipse Drawing Algoritm
Code: #include<stdio.h> #include<conio.h> #include<graphics.h> #include<math.h> void disp(); float x,y; int xc,yc...
Travelling Salesman Problem
Question: Code: Write a program to find minimum route for a newspaper distributer of your locality using Greedy algorithm. public cla...