To use microsoft word online one this URL https://onedrive.live.com/edit.aspx?action=editnew&resid=92DDF0323BA1B8F5!125&ithint=file%2cdocx&action=editnew&ct=1677686602795&wdNewAndOpenCt=1677686602795&wdPreviousSession=241d0cc1-31c4-4b76-b595-0cc5e6188b91&wdOrigin=OFFICECOM-WEB.START.NEW and sign into it
/* These are c++ code on Trees All codes are commented to view the output of code uncomment it and comment all other codes to see it's output. */ #include<bits/stdc++.h> using namespace std; //code 1 /*int main() { int n,i; cin>>n; int a[n+1]; for(i=0;i<n;i++) { cin>>a[i]; } bool flag=true; for(i=0;i<(n/2)-1;i++) { if(a[i]<a[(2*i)+1] || a[i]<a[2*i+2]) { flag=false; break; } } if(flag==true) { cout<<"it is max heap"<<endl; } else { cout...