








































Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Professor: Mancoridis; Class: Software Verification and Validation; Subject: Software Engineering; University: Drexel University; Term: Unknown 1989;
Typology: Study notes
1 / 48
This page cannot be seen from the preview
Don't miss anything!









































[Reading assignment: Chapter 7, pp. 105-122 plus many things in slides that are not in the book …]
1 2 3 4 5 6 7 1 for (j=1; j<N; j++) { last = N - j + 1; 2 for (k=1; k<last; k++) { 3 if (list[k] > list[k+1]) { temp = list[k]; list[k] = list[k+1]; list[k+1] = temp; 4 } 5 } 6 } 7 print(“Done\n”);
1
2
- B. Beizer.