- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
4 Posted Topics
please provide me doubly linked list all algorithms......
[CODE]#include<stdio.h> #include<iostream.h> #include<conio.h> void main() { int size=5,i,j; clrscr(); //cout<<"Enter the length of array : "; // cin>>size; int *array = new int[size]; cout<<"Enter elements "<<endl; for(i=0;i<size;i++) cin>>array[i]; for(i=0;i<size-1;i++) { for(j=i+1;j<size;j++) { if(array[i]>array[j]) { int temp; temp=array[i]; array[i]=array[j]; array[j]=temp; } } } cout<<"Sorted array"<<"\n"; for(i=0;i<size;i++) cout<<array[i]<<' '; for(i=array[i];i>0;i--) { delete[] …
"Let us C " by Yeshwant kanetkar.......... It is a good book for allllllll
// Assignment 1, Question #1 #include <iostream.h> #include<conio.h> void sort(int *array , int size); void print(int *array , int size); void main () { int arraysize; cout << "Please enter the size of your integer array: " << endl; cin >> arraysize; int *array = new int[arraysize]; cout<<"Enter the values"; …
The End.
shylesh_kerala