Algorithms, Theory, Spirituality, Life, Technology, Food and Workout : trying to sort these deterministically in $\Theta(1)$ time (constant time).
int a[10][20]; int main(){ print_array(a); /*results in a crash.*/ } void print_array(int **a,int i,int j){ printf("%d",a[i][j]); /*How stupid this can be?*/ }
Post a Comment
No comments:
Post a Comment