How to start problem solving skills in programming
If you’re interested in programming, you may well have seen this quote before: “Everyone in this country should learn to program a computer,...
If you’re interested in programming, you may well have seen this quote before: “Everyone in this country should learn to program a computer,...
#include<iostream> using namespace std; int weight[]={10, 20, 30}; int price []={60, 100, 120}; int capasity=50; int i,n=...
//Fibonacci number with Recursion #include<iostream> using namespace std; int fibonacci(int n) { if(n==0 ||n==1 )/...
Counting Sort //Counting Sort in C++............... #include<iostream> using namespace std; int main() { int a[] ...
//Merge Sort in C.............................. #include<stdio.h> #include<stdlib.h> void merge(int *L,int *R,int *...
//Quick Sort in c................ #include<iostream> using namespace std; int partition(int *A,int start,int end) { in...
//Bubble Sorting in C++.. #include<iostream> using namespace std; int ...
//Insert and print Charter,string,string sentence... #include <stdio.h> int main() { char ch,s[50],sen[500]; printf("...
#include<iostream> using namespace std; struct Node { int data; Node *next; Node *prev; }; Node *Head=NULL; ...
#include<iostream> using namespace std; struct Node { int data; Node *next; Node *prev; }; Node *Head=NULL; ...
#include<iostream> using namespace std; struct Node { int data; Node *left; Node *right; }; Node *root,*nptr,*tptr...