Skip to main content

DJIKSTRA’S ALGORITHM


#include<iostream.h>
#include<stdlib.h>
#include<conio.h>
class dij
{
int graph[15][15],s[15],path[15],mark[15],vertex,source,i,j,u,pre[15],count;
public:
dij()
{
count=0;
}

int min(int a[],int m[],int k);
void print(int,int,int[]);
void getgraph();
};

void dij::getgraph()
{
cout<<"Enter the no of Vertices\t";
cin>>vertex;
if(vertex<=0)
{
cout<<"Meaningless Option\n";
exit(1);
}
cout<<"\n\n\t\tEnter the Weighted Adjacent Matrix\n";
for(i=1;i<=vertex;i++)
{
for(j=1;j<=vertex;j++)
{
cout<<"\nEnter the elments of "<<i<<","<<j<<"\t";
cin>>graph[i][j];
}
}
cout<<"\n\n\tEnter the source vertex\t";
cin>>source;
for(j=1;j<=vertex;j++)
{
mark[j]=0;
path[j]=999;
pre[j]=0;
}
path[source]=0;
while(count<vertex)
{
u=min(path,mark,vertex);
s[++count]=u;
mark[u]=1;
for(i=1;i<=vertex;i++)
{
if(graph[u][i]>0)
{
if(mark[i]!=1)
{
if(path[i]>path[u]+graph[u][i])
{
path[i]=path[u]+graph[u][i];
pre[i]=u;
}
}
}
}
}
for(i=1;i<=vertex;i++)
{
cout<<"\n";
print(source,i,pre);
if(path[i]!=999)
cout<<"-->"<<path[i];
}
}

int dij::min(int a[],int m[],int k)
{
int mi=999;
int i,t;
for(i=1;i<=k;i++)
{
if(m[i]!=1)
{
if(mi>=a[i])
{
mi=a[i];
t=i;
}
}
}
return t;
}

void dij::print(int x,int i,int p[])
{
cout<<"\n";
if(i==x)
{
cout<<x;
}
else
{
if(p[i]==0)
cout<<"No Path from "<<x<<"to "<<i;
else
{
print(x,p[i],p);
cout<<".."<<i;
}
}
}
void main()
{
dij d;
clrscr();
cout<<"\n\t\t\tDIJKSTRA'S ALGORITHM\n\n";
d.getgraph();
getch();
}


Comments

Popular posts from this blog

UDP SOCKETS CHAT APPLICATION (SERVER & CLIENT) USING C

SERVER #include<stdio.h> #include<netinet/in.h> #include<sys/types.h> #include<sys/socket.h> #include<netdb.h> #include<string.h> #include<stdlib.h> #define MAX 80 #define PORT 43454 #define SA struct sockaddr void func(int sockfd) { char buff[MAX]; int n,clen; struct sockaddr_in cli; clen=sizeof(cli); for(;;) { bzero(buff,MAX); recvfrom(sockfd,buff,sizeof(buff),0,(SA *)&cli,&clen); printf("From client %s To client",buff); bzero(buff,MAX); n=0; while((buff[n++]=getchar())!='\n'); sendto(sockfd,buff,sizeof(buff),0,(SA *)&cli,clen); if(strncmp("exit",buff,4)==0) { printf("Server Exit...\n"); break; } } } int main() { int sockfd; struct sockaddr_in servaddr; sockfd=socket(AF_INET,SOCK_DGRAM,0); if(sockfd==-1) { printf("socket creation failed...\n"); exit(0); } else printf("Socket successfully created..\n"); bzero(&servaddr,sizeof(s

SIMULATION OF SLIDING WINDOW PROTOCOLS USING C

SENDER #include<sys/socket.h> #include<sys/types.h> #include<netinet/in.h> #include<netdb.h> #include<stdio.h> #include<string.h> #include<stdlib.h> #include<unistd.h> #include<errno.h> int main() { int sock,bytes_received,connected,true=1,i=1,s,f=0,sin_size; char send_data[1024],data[1024],c,fr[30]=" "; struct sockaddr_in server_addr,client_addr; if((sock=socket(AF_INET,SOCK_STREAM,0))==-1) { perror("Socket not created"); exit(1); } if(setsockopt(sock,SOL_SOCKET,SO_REUSEADDR,&true,sizeof(int))==-1) { perror("Setsockopt"); exit(1); } server_addr.sin_family=AF_INET; server_addr.sin_port=htons(17000); server_addr.sin_addr.s_addr=INADDR_ANY; if(bind(sock,(struct sockaddr *)&server_addr,sizeof(struct sockaddr))==-1) { perror("Unable to bind"); exit(1); } if(listen(sock,5)==-1) { perror("Listen"); exit(1); } fflush(stdout); sin_size=sizeof(st

TCP SOCKET DATE AND TIME USING C

SERVER #include<stdio.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<time.h> #include<string.h> #include<stdlib.h> #define max 30 #define PORT 2100 int main() { int sersoc,clisoc,conn,len,wri; char str[max]; pid_t pid; time_t ticks; socklen_t clilen; struct sockaddr_in servaddr,cliaddr; servaddr.sin_family=AF_INET; servaddr.sin_port=htons(PORT); servaddr.sin_addr.s_addr=htonl(INADDR_ANY); if((sersoc=socket(AF_INET,SOCK_STREAM,0))<0) { perror("Socket Error"); exit(0); } if(bind(sersoc,(struct sockaddr *)&servaddr,sizeof(servaddr))<0) { perror("Bind Error"); exit(0); } listen(sersoc,10); for(;;) { len=sizeof(cliaddr); conn=(accept(sersoc,(struct sockaddr *)&clisoc,&len)); if((pid=fork())==0) { close(sersoc); ticks=time(NULL); strcpy(str,ctime(&ticks)); if(wri==(write(conn,str,sizeof(str),0))<0) { printf("Write Error");