Posts

C++ Program to Implement Priority Queue

// C++ program to demonstrate the use of priority_queue #include <iostream> #include <queue> using namespace std; // driver code int main() {     int arr[6] = { 7, 2, 4, 8, 6, 9 },i;     // defining priority queue     priority_queue<int> pq;     // printing array     cout << "Array: ";     for (i=0;i<6;i++)         {         cout << arr[i] << ' ';     }     cout << endl;     // pushing array sequentially one by one on priority     for (int i = 0; i < 6; i++) {         pq.push(arr[i]);     }     // printing priority queue     cout << "Priority Queue: ";     while (!pq.empty()) {         cout << pq.top() << ' ';         pq.pop();     }     return 0; } 

C++ Program to Implement Queue using Linked List cpp

#include <bits/stdc++.h> using namespace std; struct QNode { int data; QNode* next; QNode(int d) { data = d; next = NULL; } }; struct Queue { QNode *front, *rear; Queue() { front = rear = NULL; } void enQueue(int x) { // Create a new LL node QNode* temp = new QNode(x); // If queue is empty, then // new node is front and rear both if (rear == NULL) { front = rear = temp; return; } // Add the new node at // the end of queue and change rear rear->next = temp; rear = temp; } // Function to remove // a key from given queue q void deQueue() { // If queue is empty, return NULL. if (front == NULL) return; // Store previous front and // move front one node ahead QNode* temp = front; front = front->next; // If front becomes NULL, then

queue insertion deletion using array cpp c++ program

#include <iostream> using namespace std ; int queue [ 100 ], n = 100 , front = - 1 , rear = - 1 ; void Insert () {     int val ;     if ( front == - 1 )       front = 0 ;       cout << "Insert the element in queue : " << endl ;       cin >> val ;       rear ++;       queue [ rear ] = val ;     } } void Delete () {     cout << "Element deleted from queue is : " << queue [ front ] << endl ;       front ++;;     } } void Display () {     cout << "Queue elements are : " ;       for ( int i = front ; i <= rear ; i ++)       cout << queue [ i ]<< " " ;          cout << endl ;     } } int main () {     int ch ;    cout << "1) Insert element to queue" << endl ;    cout << "2) Delete element from queue" << endl ;    cout << "3) Display all the elements of queue" &l

cpp c++ programme for stack push pop implementation using linked list

#include <iostream> #include<stdlib.h> using namespace std ; struct Node {     int data ;     struct Node * next ; }; struct Node * top = NULL ; void push ( int val ) {     struct Node * newnode = ( struct Node *) malloc ( sizeof ( struct Node ));    newnode -> data = val ;    newnode -> next = top ;    top = newnode ; } void pop () {     cout << "The popped element is " << top -> data << endl ;       top = top -> next ;     } void display () {     struct Node * ptr ;     ptr = top ;       cout << "Stack elements are: " ;       while ( ptr != NULL ) {          cout << ptr -> data << " " ;          ptr = ptr -> next ;       }     }     } int main () {     int ch , val ;    cout << "1) Push in stack" << endl ;    cout << "2) Pop from stack" << endl ;    cout << "3)

stack implementation using array push pop operations in stack cpp c++ program

 #include<iostream> using namespace std; int stack[100]; int n,i,top,x; void push(); void pop(); void display(); int main() {   int ch;   cout<<"Enter the number of elements in the stack";   cin>>n;   i=1;   top=-1;   while(i)   { cout<<"Enter your choice (1-4)"<<endl;     cout<<"1.PUSH\n2.POP\n3.DISPLAY\n4.EXIT\n";     cin>>ch;     switch(ch)     {       case 1:push();              break;       case 2:pop();              break;       case 3:display();              break;       case 4:i=0;              break;       default:cout<<"Wrong Choice!!!!"<<endl;              break;     }   } return 0; } void push() {     if(top>=n-1)           // OVERFLOW i.e. if stack top goes beyond the size of the stack     {       cout<<"STACK IS OVERFLOW"<<endl;   }   else   {     cout<<"Enter the value to be added :";   cin>>x;   top=top+1;   stack[top]=x;     } } v

Linked List Implementation using C++ Program data structure cpp

Image
  #include <iostream> using namespace std; //Declare Node struct Node{     int num;     Node *next; }; //Declare starting (Head) node struct Node *head=NULL; //Insert node at start void insertNode(int n){     struct Node *newNode=new Node;     newNode->num=n;     newNode->next=head;     head=newNode; } //Traverse/ display all nodes (print items) void display(){     struct Node *temp=head;     while(temp!=NULL){         cout<<temp->num<<" ";         temp=temp->next;     }     cout<<endl; } //delete node from start void deleteItem(){     if(head==NULL){         cout<<"List is empty!"<<endl;         return;     }     cout<<head->num<<" is removed."<<endl;     head=head->next; } int main(){     display();     insertNode(1);     insertNode(2);     insertNode(3);     display();     deleteItem();     deleteItem();     deleteItem();     display();     return 0; }

select * from mysql database table using php

 <?php $servername="localhost"; $username="root"; $password=""; $dbname="shrisha"; $conn=mysqli_connect($servername, $username,$password,$dbname); $sql="SELECT * FROM tbl"; $data=mysqli_query($conn,$sql); $show=mysqli_fetch_array($data); echo $show['id'].$show['name']; ?>

delete mysql database table using php

 <?php $servername="localhost"; $username="root"; $password=""; $dbname="shrisha"; $conn=mysqli_connect($servername, $username,$password,$dbname); $sql="DELETE FROM tbl WHERE id=02"; mysqli_query($conn,$sql); mysqli_close($conn); ?>

update mysql database table using php

 <?php $servername="localhost"; $username="root"; $password=""; $dbname="shrisha"; $conn=mysqli_connect($servername, $username,$password,$dbname); $sql="UPDATE tbl SET name='Shri Ram' WHERE id=01"; mysqli_query($conn,$sql); mysqli_close($conn); ?>

insert into mysql database table using php

 <?php $servername="localhost"; $username="root"; $password=""; $dbname="shrisha"; $conn=mysqli_connect($servername, $username,$password,$dbname); $sql="INSERT INTO tbl(id,name)VALUES (02,'sham')"; mysqli_query($conn,$sql); mysqli_close($conn); ?>

create table in mysql using php

 <?php $servername="localhost"; $username="root"; $password=""; $dbname="shrisha"; $conn=mysqli_connect($servername, $username,$password,$dbname); $sql="CREATE TABLE tbl(id INT(2) PRIMARY KEY,name VARCHAR(10))"; mysqli_query($conn,$sql); mysqli_close($conn); ?>

create mysql database using php

 <?php $servername="localhost"; $username="root"; $password=""; $conn=mysqli_connect($servername,$username, $password); $sql="CREATE DATABASE shrisha"; mysqli_query($conn,$sql); mysqli_close($conn); ?>

insertion sort programm in cpp c++ data structure

 #include<iostream> using namespace std; int main() {     int i,j,n,temp,a[30];     cout<<"Enter the number of elements:";     cin>>n;     cout<<"\nEnter the elements\n";     for(i=0;i<n;i++)     {         cin>>a[i];     }     for(i=1;i<n;i++)     {         for(j=1;j<n;j++)         {             if(a[j]<a[j-1])             {                 temp=a[j-1];                 a[j-1]=a[j];                 a[j]=temp;             }         }     }     cout<<"\nSorted list is as follows\n";     for(i=0;i<n;i++)     {         cout<<a[i]<<" ";     }     return 0; }

selction sort programm in cpp

#include<iostream> using namespace std; int main() {     int i,j,n,temp,a[30];     cout<<"Enter the number of elements:";     cin>>n;     cout<<"\nEnter the elements\n";     for(i=0;i<n;i++)     {         cin>>a[i];     }     for(i=0;i<n-1;i++)     {         for(j=i+1;j<n;j++)         {             if(a[i]>a[j])             {                 temp=a[j];                 a[j]=a[i];                 a[i]=temp;             }         }     }     cout<<"\nSorted list is as follows\n";     for(i=0;i<n;i++)     {         cout<<a[i]<<" ";     }     return 0; }

bubble sort program in cpp c++

#include<iostream> using namespace std ; int main() { int n, i, arr[50], j, temp; cout << "Enter the Size (max. 50): " ; cin >>n; cout << "Enter " <<n<< " Numbers: " ; for (i=0; i<n; i++) cin >>arr[i]; cout << " \n Sorting the Array using Bubble Sort Technique.. \n " ; for (i=0; i<(n-1); i++) { for (j=0; j<(n-i-1); j++) { if (arr[j]>arr[j+1]) { temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } cout << " \n Array Sorted Successfully! \n " ; cout << " \n The New Array is: \n " ; for (i=0; i<n; i++) cout <<arr[i]<< " " ; cout << endl ; return 0; }

cpp program binary search program in c++

#include<iostream> using namespace std ; int main() { int i, arr[10], num, first, last, middle; cout << "Enter 10 Elements (in ascending order): " ; for (i=0; i<10; i++) cin >>arr[i]; cout << " \n Enter Element to be Search: " ; cin >>num; first = 0; last = 9; middle = (first+last)/2; while (first <= last) { if (arr[middle]<num) first = middle+1; else if (arr[middle]==num) { cout << " \n The number, " <<num<< " found at Position " <<middle+1; break ; } else last = middle-1; middle = (first+last)/2; } if (first>last) cout << " \n The number, " <<num<< " is not found in given Array" ; cout << endl ; return 0; }

cpp c++ program for linear search

#include<iostream> using namespace std ; int main() { int arr[10], i, num, location; cout << "Enter 10 Numbers: " ; for (i=0; i<10; i++) cin >>arr[i]; cout << " \n Enter a Number to Search: " ; cin >>num; for (i=0; i<10; i++) { if (arr[i]==num) { Location = i; break; } } cout << " \n Found at location : " <<location; cout << endl ; return 0; }

array in php

Image

conditional statements in php

Image

looping statements in php

Image

factorial c++ without recursion

#include <iostream> using namespace std; int main() { unsigned int num; //unsigned is used for not taking negetive values. unsigned long long factorial = 1; //Since the factorial a number can be large, so long long data type is used. cout << "Give me any positive number : "; cin >> num; for (int i = 1; i <= num; i++) { factorial = factorial * i; } cout << "Factorial of the given number is: " << factorial; }

fibonacci series program in C++ without recursion.

#include <iostream>    using   namespace  std;   int  main() {      int  n1=0,n2=1,n3,i,number;      cout<< "Enter the number of elements: " ;      cin>>number;      cout<<n1<< " " <<n2<< " " ;  //printing 0 and 1        for (i=2;i<number;++i)  //loop starts from 2 because 0 and 1 are already printed       {       n3=n1+n2;       cout<<n3<< " " ;       n1=n2;       n2=n3;      }         return  0;      }  

fibonacci series using recursion cpp

#include <iostream> using namespace std ; int fib ( int x ) {     if (( x == 1 )||( x == 0 )) {       return ( x );     } else {       return ( fib ( x - 1 )+ fib ( x - 2 ));     } } int main () {     int x , i = 0 ;    cout << "Enter the number of terms of series : " ;    cin >> x ;    cout << "\nFibonnaci Series : " ;     while ( i < x ) {       cout << " " << fib ( i );       i ++;     }     return 0 ; }

Factorial Using Recursion c++

# include <iostream> using namespace std ; int factorial ( int n) ; int main () { int n; cout << "Enter a positive integer: " ; cin >> n; cout << "Factorial of " << n << " = " << factorial(n); return 0 ; } int factorial ( int n) { if (n > 1 ) return n * factorial(n - 1 ); else return 1 ; }

c++ program for sum of 10 array elements

include<iostream> using namespace std ; int main ( ) { int arr [ 10 ] , n, i, sum = 0 , pro = 1 ; cout << "Enter the size of the array : " ; cin >> n ; cout << " \n Enter the elements of the array : " ; for ( i = 0 ; i < n ; i ++ ) cin >> arr [ i ] ; for ( i = 0 ; i < n ; i ++ ) { sum + = arr [ i ] ; pro * = arr [ i ] ; } cout << " \n Sum of array elements : " << sum ; cout << " \n Product of array elements : " << pro ; return 0 ; }

syllabus of php and data science

Image

स्वामी विवेकानंद शिकागो भाषण swami vivekanand Chicago speech

अमेरिका के बहनो और भाइयो, आपके इस स्नेहपूर्ण और जोरदार स्वागत से मेरा हृदय अपार हर्ष से भर गया है। मैं आपको दुनिया की सबसे प्राचीन संत परंपरा की तरफ से धन्यवाद देता हूं। मैं आपको सभी धर्मों की जननी की तरफ से धन्यवाद देता हूं और सभी जाति, संप्रदाय के लाखों, करोड़ों हिंदुओं की तरफ से आपका आभार व्यक्त करता हूं। मेरा धन्यवाद कुछ उन वक्ताओं को भी जिन्होंने इस मंच से यह कहा कि दुनिया में सहनशीलता का विचार सुदूर पूरब के देशों से फैला है। मुझे गर्व है कि मैं एक ऐसे धर्म से हूं, जिसने दुनिया को सहनशीलता और सार्वभौमिक स्वीकृति का पाठ पढ़ाया है। हम सिर्फ सार्वभौमिक सहनशीलता में ही विश्वास नहीं रखते, बल्कि हम विश्व के सभी धर्मों को सत्य के रूप में स्वीकार करते हैं। मुझे गर्व है कि मैं एक ऐसे देश से हूं, जिसने इस धरती के सभी देशों और धर्मों के परेशान और सताए गए लोगों को शरण दी है। मुझे यह बताते हुए गर्व हो रहा है कि हमने अपने हृदय में उन इजरायलियों की पवित्र स्मृतियां संजोकर रखी हैं, जिनके धर्म स्थलों को रोमन हमलावरों ने तोड़-तोड़कर खंडहर बना दिया था और तब उन्होंने दक्षिण भारत में शरण ली थी। मुझे इ

बाबांना समर्पित कविता

जुने गाणे ऐकताना बाबा मी तुम्हाला माझ्यामध्ये अनुभवतो || ड्रायव्हिंग करताना तुमचे माझ्यावर असलेले नियंत्रण बाबा मी नेहमी अनुभवतो || कोणत्याही लहान बाळाला त्याच्या आजोबांसोबत खेळताना बघतो त्यावेळी मी तुमची कमी खूप अनुभवतो || तुम्हाला स्वतःचं व दुसर्याचही भविष्य माहीत होतं हे आता दैनंदिन आयुष्यात मी अनुभवतो || प्रत्येक कार्यात यश हा तुमचा विश्वास बाबा मी सर्वत्र अनुभवतो || माझं बाळ जेंव्हा माझ्या अंगाखांद्यावर खेळतं, तेंव्हा तुम्हाला मी माझ्यात अनुभवतो || बाळाच्या "बाबा" हया हाकेला बाबा मी तुम्हाला माझ्यात अनुभवतो || घरातील प्रत्येक जागेत उठता बसता तुमचा सहवास सतत मी अनुभवतो || तुम्हीच लावलेल्या झाडांना पाणी घालताना त्या झाडांमध्ये देखील मी तुम्हाला अनुभवतो|| घरगाडा हाकताना पै पै चा व्यवहार करताना बाबा तुम्हाला मी  माझ्यात अनुभवतो|| माझ्या छोट्या छोट्या यशात माझ्या बाजूलाच मनोमन आनंदित होताना तुम्हाला मी अनुभवतो|| दररोज अरश्यासमोर उभे राहताना माझ्या समोर तुम्हाला मी माझ्यात अनुभवतो|| कितीही त्रास अवहेलना झाली तरीही निश्चल मनाने पुढे जाताना माझ्यात मी तुम्हाला अनुभवतो|| सगळ्यांच

android programming written notes mobile smartphone programming technology

Image
Android mobile app development Hi friends welcome to ask in detail*** I am sharing notes for you ***imp note : please wait till comple page loads, it may take few minutes, high quality images takes time to load***