Data Structures »

C Program to print strings in alphabetical order

Mr Coder February 24, 2013 2

C Program to print strings in alphabetical order or Lexicographical order : As we all know there are several ways to sort strings alphabetically but using arrays is the easiest.  Ordering Strings into alphabetical

Read More »

C Program to Concatenate two Strings using Arrays

Mr Coder February 24, 2013 0

C Program to Concatenate two Strings using Arrays : There are lot of ways of concatenating strings in C programming, also there is standard function in C “strcat” to concatenate the strings. But how

Read More »

C Program of Huffman coding using Greedy Algorithm Approach

Mr Coder February 20, 2013 1

C Program of Huffman coding using Greedy Algorithm Approach : This code is not written by me. I found a great article on Geeks for Geeks and thought it worth sharing. Still if you

Read More »

C program to add two polynomials using Linked Lists

Mr Coder February 19, 2013 0

C program to add two polynomials using Linked Lists : Adding two polynomials is quite easy stuff when we do it manually but it requires a bit effort while programming it. I have written

Read More »

C program to Find Minimum Spanning tree KRUSKAL’s Algorithm

Mr Coder February 18, 2013 0

C program to Find Minimum Spanning tree KRUSKAL’s Algorithm : Kruskal’s algorithm is a greedy algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds

Read More »

C program to find Minimum Spanning tree PRIM’s Algorithm

Mr Coder February 18, 2013 0

C program to find Minimum Spanning tree PRIM’s Algorithm : Prim’s algorithm is a greedy algorithm that finds a minimum spanning tree for a connected weighted undirected graph. This means it finds a subset

Read More »

C Program to Find shortest Path using dijkstra’s algorithm

Mr Coder February 17, 2013 0

C Program to Find shortest Path using Dijkstra’s algorithm : Dijkstra’s algorithm is a graph search algorithm that solves the single-source shortest path problem for a graph with non-negative edge path costs, producing a

Read More »

C program of circular queue using linked list

Mr Coder February 15, 2013 0

C program of circular queue using linked list : A circular queue is one in which the insertion of new element is done at the very first location of the queue if the last

Read More »

C program for insertion and deletion in Linear Queue

Mr Coder February 15, 2013 1

 C program for insertion and deletion in Linear Queue : A linear queue models the FIFO(first in first out) data structure, much like a line in real life. The first person in line will

Read More »

C Program of Library Management System | C Projects

Mr Coder September 27, 2012 1

C program of Library Management System : Hey friends, we are back with another cool C program. Today we will see how to write a C program of Library Management System. Actually, I haven’t

Read More »