Analyzing in sections:
Section 1:
#include <iostream>
#include <cstdlib>
These lines indicate C++. One could expect that this program may use console I/O and some standard C language functions.
Section 2:
using namespace std;
Lazy typist. Doesn't like typing std::cout instead of cout.
Section 3:
struct node{
int k; node * l,*r;
node (int t){
k=t; l=0;r=0;
}
};
Looks like a typical node in either a binary tree or a linked list. Given that l could be for left and r for right. These are links that could point to a left subtree and right subtree or left node and right node. Further reading required.
Section 4:
typedef node * link;
Indication of a C language programmer using C++.
This declares link as a synonym for a pointer to a node.
Section 5:
link Max(int a[],int l,int r)
{
int m=(r+l)/2;
link x=new node(a[m]);
if (l==r) return x;
x->l=Max(a,l,r);
x->r=Max(a,m+1,r);
int u=x->l->k;
int v=x->r->k;
if (u>v)
x->k=u;
else x->k=v;
return x;
}
Looks like a recursive function to traverse a binary tree, looking for the maximum data value. It may insert this correctly; only deep analysis and debugging will tell.
Section 6:
int main()
{
int *a=new int[100];
int n=sizeof(a)/sizeof(a[0]);
for (int i=0;i<n;i++){
a[i]=rand() ;
}
//for (int i=0;i<n;i++){
// cout<<a[i]<< " ";
//}
cout<<Max(a,0,n-1)<< " ";
return 0;
}
Looks like it should be the main function which tests the building of the binary tree and displays the results. It's correctness to be determined (by debugging or careful review).
This is a classic example of code that would be faster to rewrite than to get working.