Starting from:

$25

CSC230-Exercise 10 Arrays as Pointers Solved

This exercise will give you a chance to work with arrays using the pointer syntax.  You'll find a source file, sortList.c on the course homepage in Moodle, or you can download the exercise files using the following curl commands:

This program is a partial implementation of a selection sort, using lots of pointer operations and pointer arithmetic.  Fill in the missing parts of the swap(), findSmallest() and printList() functions to complete the program.  For the findSmallest() and printList() functions, I've put constraints on what code you can add.  This is to help make sure you get practice working with pointers.  Instead of manipulating the array using the usual array syntax, we will access it via pointers to its elements.

As described in the source file, you get to complete three functions:

•   swap( ) : this is the usual function used to swap the contents of two integers passed in by address.  You could probably find a copy of this function somewhere in the lecture notes or the example programs, but why not try to write it yourself, just for the practice.

•   findSmallest() : Given an array (pointer to int) and a length, return a pointer to the smallest value in the array.  In this function, you will use a pointer (rather than an index) to keep up with a particular element of an array.

•   printList() : Given an array (pointer to int) and a length, print out the contents of the array.  This function will let you traverse an array via a pointer (rather than an index).

When your program is working, it should produce output like the following (don't worry about writing a fencepost loop to suppress printing a trailing space):

74 166 250 273 441 545 659 710 808 879 924 931

More products