-
Book Overview & Buying
-
Table Of Contents
The C++ Programmer's Mindset
By :
In this chapter, we put the final touches on the application we have been building over the last few chapters. This involved pulling together the file readers that we developed in Chapters 9 and 10 into a loop that inspects the extension of each file, provided by the command line, performs a clustering on the resulting records, and prints the results out to the terminal. In doing so, we added a few extra configuration options to the command-line interface with sensible defaults so that the user (the client) can configure the range of
values to search in the clustering.
In the remainder of the chapter, we looked back over the whole process and examined some of the difficult parts, some of the techniques we used, and some points to take away from our efforts. It is important to reflect on what you have done and what you might do if you had more time, more resources, better technologies, or better knowledge. This will aid you well the next time you come across a similar...