Ansten Lobo wrote a new post, C Program for implementing two Stacks on Single Array 1 year ago
C Program for implementing two Stacks on Single Array.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 10 /* Size of Stack */
int s[SIZE],top[3]={0,-1,SIZE};
/* Global […]
Ansten Lobo wrote a new post, C Program for Simple DSC order Priority QUEUE Implementation using Structure 1 year ago
C Program for Simple DSC order Priority QUEUE Implementation using Structure.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Queue */
int f=0,r=-1; /* […]
Ansten Lobo wrote a new post, C Program for Simple DSC order Priority QUEUE Implementation using Structure 1 year ago
C Program for Simple DSC order Priority QUEUE Implementation using Structure.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT.
#define SIZE 5 /* Size of Queue */
int f=0,r=-1; […]
Ansten Lobo wrote a new post, C Program for Simple ASC order Priority QUEUE Implementation using Structure 1 year ago
C Program for Simple ASC order Priority QUEUE Implementation using Structure.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Queue */
int f=0,r=-1; /* […]
Ansten Lobo wrote a new post, C Program for Simple DSC order Priority QUEUE Implementation 1 year ago
C Program for Simple DSC order Priority QUEUE Implementation.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Queue */
int PQ[SIZE],f=0,r=-1; /* Global […]
Ansten Lobo wrote a new post, C Program for Simple ASC order Priority QUEUE Implementation 1 year ago
C Program for Simple ASC order Priority QUEUE Implementation.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Queue */
int PQ[SIZE],f=0,r=-1; /* Global […]
Ansten Lobo wrote a new post, C Program to convert Prefix Expression into Postfix 1 year ago
C Program to convert Prefix Expression into Postfix .
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
#include
char opnds[50][80],oprs[50];
int topr=-1,topd=-1;
pushd(char […]
Ansten Lobo wrote a new post, C Program to convert Prefix Expression into INFIX 1 year ago
C Program to convert Prefix Expression into INFIX.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
#include
char opnds[50][80],oprs[50];
int topr=-1,topd=-1;
pushd(char […]
Ansten Lobo wrote a new post, C Program for Infix to Prefix Conversion 1 year ago
C Program for Infix to Prefix Conversion.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 50 /* Size of Stack */
#include
#include
char s[SIZE];
int top=-1; /* […]
Ansten Lobo wrote a new post, C Program for Binary Search and Towers of Hanoi using Recursion 1 year ago
C Program for Binary Search and Towers of Hanoi using Recursion.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
main()
{
int n,a[50],key,opn,i,pos;
do
{
clrscr();
[…]
Ansten Lobo wrote a new post, C Program for Binary Search Tree Creation and Traversals 1 year ago
C Program for Binary Search Tree Creation and Traversals.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
typedef struct tnode
{
int data;
struct tnode […]
Ansten Lobo wrote a new post, Program for Doubly Linked List Operations 1 year ago
Program for Doubly Linked List Operations – Insert (Front, Before), Delete, Display
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
typedef struct dnode
{
int data;
struct […]
Ansten Lobo wrote a new post, C Program to implement QUEUE operations using Linked Lists 1 year ago
C Program to implement QUEUE operations using Linked Lists
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
typedef struct node
{
int data;
struct node *link;
}NODE;
void […]
Ansten Lobo wrote a new post, C Program to implement STACK operations using Linked Lists 1 year ago
C Program to implement STACK operations using Linked Lists.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
typedef struct node
{
int data;
struct node *link;
}NODE;
void […]
Ansten Lobo wrote a new post, C Program for Singly Linked List Operations 1 year ago
C Program for Singly Linked List Operations – Insert (Front, Pos, back), Delete, Search and Update.
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#include
#include
typedef struct node
{
[…]
Ansten Lobo wrote a new post, C Program for Circular QUEUE Operations – using Array 1 year ago
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Circular Queue */
int CQ[SIZE],f=-1,r=-1; /* Global declarations */
CQinsert(int elem)
{ […]
Ansten Lobo wrote a new post, C Program for Simple/Linear QUEUE Operations – Using Array 1 year ago
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Queue */
int Q[SIZE],f=0,r=-1; /* Global declarations */
Qinsert(int elem)
{ /* […]
Ansten Lobo wrote a new post, C Program for Evaluation of Postfix Expression 34*5+ 1 year ago
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 50 /* Size of Stack */
#include
int s[SIZE];
int top=-1; /* Global declarations */
push(int elem)
{ […]
Ansten Lobo wrote a new post, C Program for Infix to Postfix Conversion 1 year ago
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 50 /* Size of Stack */
#include
char s[SIZE];
int top=-1; /* Global declarations */
push(char elem)
{ […]
Ansten Lobo wrote a new post, C Program for Stack Operations – Using Array 1 year ago
Source: Dr. G T Raju, Professor & Head, Dept. of CSE, RNSIT
#define SIZE 5 /* Size of Stack */
int s[SIZE],top=-1; /* Global declarations */
push(int elem)
{ /* […]
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Resources #Terms of Use
Copyright©2012 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com