CS 2213 Advanced Programming, Spring 2001 Programming Assignment 1 Comments
This assignment was graded on a basis of 30 points.
- You must run lint.
- Several people did things like
if ((leftchild < k) && (rightchild < k) )
but the second condition implies the first.
- while ( (vals[k] > vals[(k-1)/2]) && (k > 0) ) is incorrect
- No lines longer than 80 characters