Difference between revisions of "DSA Software Development Environment"

From David Vernon's Wiki
Jump to: navigation, search
(DSA Data Structures and Algorithms for Engineers Repository)
(DSA Data Structures and Algorithms for Engineers Repository)
Line 118: Line 118:
  
  
Select Visual Studio 10 (2010) from the drop-down menu as the generator for the project
+
Select Visual Studio 17 20122 from the drop-down menu as the generator for the project
  
  

Revision as of 05:07, 20 July 2024

This guide provides a step-by-step guide to downloading, installing, and using the software required to submit an assignment for course 04-630 Data Structures and Algorithms for Engineers. This environment is required to ensure that software developed by students can be compiled directly by the course instructor after it has been submitted.

Follow these instructions exactly as they are stated. Do not be tempted to skip through them, assuming that you will be able to figure it out yourself. You might, but it is more likely you will miss something small but important and it won't work as required. Take your time, follow these instructions carefully, and everything will work.


Operating System

I assume you are running Windows 11.

I strongly recommend you turn off the option in the File Explorer to hide file extensions. To do this, on the File Explorer menu bar click the "..." icon and select Options > View. Make sure the tick box labelled "Hide extensions for known file types" is not ticked. If it is ticked, you will have problems identifying certain files later on (e.g. invoking the example.sln solution file to launch the Visual Studio C++ compiler). Select "Apply" after you untick the box.


C/C++ Compiler

Download Microsoft Visual Studio Community.

You can download the required installer from the Microsoft website or here.

Run the installer and follow the instructions. Be sure to install Visual Studio Community 2022.


Visual Studio Installer 01.png


Select Desktop Development with C++ and click "Install" or "Install While Downloading".


Visual Studio Installer 02.png


CMake

Download CMake binaries from here. At time of writing the latest version is 3.30.0.

You can opt for either the WIN32 installer (cmake-3.30.0-windows-x86_64.msi) or the Windows zip file. The installer has the advantage that it gives you the option to update your system path automatically (which you should take by clicking the appropriate radio button during the installation process). If you choose the installer option, note that if you already have CMake version 3.4 or earlier you must uninstall it first.

Here are the installation steps.


Click "Next".

CMake Installer 01.png


Click the checkbox to accept the term, and click "Next".

CMake Installer 02.png


Click the checkbox to add CMake to the PATH environment variable, and click "Next".

CMake Installer 03.png


Use the default install path, and click "Next".

CMake Installer 04.png


Click "Install".

CMake Installer 05.png


Click "Yes" to enable the files to be installed.

CMake Installer 06.png


Click "Finish".

CMake Installer 07.png

DSA Data Structures and Algorithms for Engineers Repository

Copy the DSA repository to the C: drive:

  • Download a zip archive with all the files from here.
  • Copy it to C: drive and unzip it so that you have a directory called C:/DSA.


C:/DSA has with a sub-directory structure explained in class. For our purposes here, there is an C:/DSA/assignments directory and it will contain an example C:/DSA/assignments/assignment0 sub-directory. Later on, you will generate C:/DSA/assignments/assignment1 and C:/DSA/assignments/assignment2, and so on.

There is also a C:/DSA/lectures sub-directory. This has some simple examples of standard data structures and algorithms. Later in the course, I will make available the code from the lectures, together with instructions on how to add it to the repository: the source code will go in the C:/DSA/lectures/src sub-directory and test data will go in the C:/DSA/lectures/data sub-directory.


The next step is to build a Visual Studio .sln solution file so that you can compile (i.e., build) the DSA assignment0 executable. To do this, you need to run CMake against the C:DSA/assignments/assignment0 directory (where you will find the main CMakeLists.txt file). We use assignment0 because it is a dummy assignment but you will follow exactly the same procedure for all the real assignments.

Launch the CMake GUI from the Windows 11 taskbar.


DSA Installation 01.png


In the Where is the source code: type (or browse to) C:/DSA/assignments/assignment0


DSA Installation 02.png


In the Where to build the binaries: type (or browse to) C:/DSA/assignments/assignment0/build


DSA Installation 03.png


Select File > Delete Cache from the top menu (you must do this the first time in case there is an old invalid configuration in the DSA directory)


DSA Installation 04.png


Click Configure


DSA Installation 05.png


Select Visual Studio 17 20122 from the drop-down menu as the generator for the project


DSA Installation 06.png


Click Finish and watch CMake configure your project. The dialogue box will still highlighted in red, so ...


DSA Installation 07.png


Click Configure one more time and everything should be fine.


DSA Installation 08.png


Click Generate to create the Visual Studio assignment0.sln file in the C:/DSA/assignments/assignment0/build directory.


DSA Installation 09.png


Now you are ready to launch Visual Studio and build the DSA assignment0 executable.


Go to the C:/DSA/assignments/assignment0/build directory and double-click the assignment0.sln file. This launches Microsoft Visual Studio.


DSA Installation 10.png


Select Release in the Solutions Configuration box (this is located left of centre on the toolbar and defaults to Debug).


DSA Installation 11.png


Select Build > Configuration Manager from the menu and make sure the INSTALL check-box is ticked.

Note that you will have to tick this check-box every time you rebuild the .sln solution file with CMake. If you don't do this, then your new executable won't be installed in the bin directory and you'll end up becoming very confused because none of the changes you make to your source code will be reflected in the executable you run from the bin directory (because its an old version from a previous compilation).


DSA Installation 12.png


Select Build > Build Solution from the top menu.

This will compile and link the programs in the the C:/DSA/assignments/assignment0/src sub-directory and install then in the C:/DSA/assignments/assignment0/bin directory.


DSA Installation 13.png


Good! Now you are now ready to run the example dvernon.exe application that is provided with the DSA release. To do this, double click the< code>dvernon.exe</code></span> executable in C:/DSA/assignments/assignment0/bin.


DSA Installation 14.png


Open assignment0Input.txt file in C:/DSA/assignments/assignment0/dataand, after running dvernon.exe, open the assignment0Output.txt file, also in the C:/DSA/assignments/assignment0/data directory.


Try creating your own (dummy) assignment program. To do this, follow the following steps.

  • Create a directory with your Andrew Id, e.g. C:/DSA/assignments/assignment0/src/myandrewid
  • Copy the source files (.c, .cpp, .h) from the dvernon directory to the myandrewid directory.
  • Edit the C:/DSA/assignments/assignment0/src/CMakeLists.txt file and replace ADD_SUBDIRECTORY(dvernon) with ADD_SUBDIRECTORY(myandrewid), where myandrewid is your Andrew Id.
  • Edit the C:/DSA/assignments/assignment0/src/myandrewid/CMakeLists.txt file and replace dvernon with myandrewid, where myandrewid is your Andrew Id.
  • Run CMake again.
  • Re-open the assignment0.sln file (remember, it's in the C:/DSA/assignments/assignment0/build directory).
  • Your files should now be visible (and the dvernon ones will no longer be there) and you can now edit your code (change dvernon to your Andrew ID in the assignment0Application.cpp file, compile it, and install it in the bin directory by selecting Build > Build Solution from the top menu.
  • Make sure that the INSTALL check-box is ticked when you select Build > Configuration Manager from the menu to ensure that your executable is installed in the C:/DSA/assignments/assignment0/bin directory.
  • Finally, run your program in the C:/DSA/assignments/assignment0/bin directory. You might like to change the contents of assignment0Input.txt in the C:/DSA/assignments/assignment0/data directory and re-run your program to convince yourself that everything is working properly.


For your first assignment, you will simply copy the assignment0 directory to assignment1 and follow a similar procedure, writing new assignment-specific code, of course. There are just one thing you need to do: edit the C:DSA/assignments/assignment1/CMakeLists.txt and change the project name from assignment0 to assignment1, viz:

 ##############################################
 PROJECT(assignment0)
 ############################################## 

becomes

 ##############################################
 PROJECT(assignment1)
 ############################################## 


When submitting an assignment, all you have to do is submit a zipped version of your myandrewid directory with your three source code files.

I simply unzip it and add it to the src directory on my computer, along with the all the other students and my own solution, run CMake, launch the .sln file, compile, install, and check each executable in bin against the test data file in my data directory. Because we build the solutions the same way, you are guaranteed that your code will compile, provided you have followed this procedure.

Humour

After all that, a little course-related humour might be welcome (if these don't make sense now, they will later).

Some Ineffective Sorts

Tree and Heap

Travelling Salesman Problem