This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2014:data:projects:node1 [2014/09/19 11:13] – [Overview] wedge | haas:fall2014:data:projects:node1 [2014/09/21 22:02] (current) – [node library] wedge | ||
---|---|---|---|
Line 69: | Line 69: | ||
* **bin**: compiled, executable programs will reside here | * **bin**: compiled, executable programs will reside here | ||
- | * **inc**: project-related header files (which we can **# | + | * **inc**: project-related header files are here |
* **lib**: compiled, archived object files (aka libraries) will reside here | * **lib**: compiled, archived object files (aka libraries) will reside here | ||
* **src**: subdirectory tree containing our Data Structure implementations | * **src**: subdirectory tree containing our Data Structure implementations | ||
Line 152: | Line 152: | ||
<cli> | <cli> | ||
lab46: | lab46: | ||
- | ... | + | Archiving the project |
+ | Compressing the archive ... | ||
+ | Setting Permissions ... | ||
+ | lab46: | ||
</ | </ | ||
Line 168: | Line 171: | ||
At this point your code is up to date (obviously the above output will reflect whatever the current revision is). | At this point your code is up to date (obviously the above output will reflect whatever the current revision is). | ||
- | |||
====upgrades==== | ====upgrades==== | ||
As the semester progresses, additional projects will be made available. When this occurs, you may notice new entries appear on the **make help** display. For example, as the deadline for the **node1** project approaches, you will see the following appear: | As the semester progresses, additional projects will be made available. When this occurs, you may notice new entries appear on the **make help** display. For example, as the deadline for the **node1** project approaches, you will see the following appear: | ||
Line 185: | Line 187: | ||
As such, it is most advisable to have completed work on **node1** before upgrading to the **sll0** project, so any work you've done will be immediately available to build upon in the next project (the projects will be comprehensive to one another-- **sll0** will rely on work completed in **node1**, **sll1** (the project after **sll0**) will rely on the work done in **sll0**, etc.). | As such, it is most advisable to have completed work on **node1** before upgrading to the **sll0** project, so any work you've done will be immediately available to build upon in the next project (the projects will be comprehensive to one another-- **sll0** will rely on work completed in **node1**, **sll1** (the project after **sll0**) will rely on the work done in **sll0**, etc.). | ||
- | =====Project | + | =====Project |
- | In **testing/ | + | |
- | Take a look at the code already there. Figure out what is going on, make sure you understand it. It builds a list of nodes based on user input. | + | ====node library==== |
+ | In **src/ | ||
- | If you look at the bottom of the program, you' | + | Take a look at the code there. These are the files that contain functions which will be compiled and archived into the node library (**libnode.a**) we will be using in this and future projects. |
+ | |||
+ | Figure out what is going on, make sure you understand it. | ||
+ | |||
+ | There are 3 functions in the node library: | ||
+ | |||
+ | * **mknode()** - creates and initializes a new node, eliminating your need to manually run **malloc()** for new nodes | ||
+ | * **cpnode()** - duplicates an existing node | ||
+ | * **rmnode()** - removes/ | ||
+ | |||
+ | None of these files denote an entire runnable | ||
+ | |||
+ | You will also notice there are function prototypes for these node library functions in the **node.h** header file, located in the **inc/** subdirectory, | ||
+ | |||
+ | The prototypes (taken right from **inc/ | ||
<code c> | <code c> | ||
- | // Display list from start to end | + | Node *mknode(int |
+ | Node *rmnode(Node *); // deallocate node | ||
+ | Node *cpnode(Node *); // duplicate node | ||
</ | </ | ||
- | It is here I would like for you to add code that will display | + | This is your API for the node library. In order to use the node library three things need to happen: |
+ | * you must **#include " | ||
+ | * you must link against **lib/ | ||
+ | * you must call the functions providing the appropriate arguments and handling the return values | ||
+ | |||
+ | In general, this is no different than what you've already done, each and every time you've used **printf()**, | ||
+ | |||
+ | The compiler does a lot of behind-the-scenes work (linking against the C standard library by default, so all you have to do is include **stdio.h** and/or **stdlib.h**). | ||
+ | |||
+ | If you've ever played with the math library, you've had a slightly closer look, as such code wouldn' | ||
+ | |||
+ | Again, same details apply here, only the Makefile system automates the library linking. All we have to do is **# | ||
+ | ====Node library unit tests==== | ||
+ | In **testing/ | ||
+ | |||
+ | * **unit-cpnode.c** - unit test for **cpnode()** library function | ||
+ | * **unit-mknode.c** - unit test for **mknode()** library function | ||
+ | * **unit-rmnode.c** - unit test for **rmnode()** library function | ||
+ | |||
+ | These are complete runnable programs (when compiled, and linked against the node library, which is all handled for you by the **Makefile** system in place). | ||
+ | |||
+ | Of particular importance, I want you to take a close look at: | ||
+ | |||
+ | * the source code to each of these unit tests | ||
+ | * the purpose of these programs is to validate the correct functionality of the respective library functions | ||
+ | * follow the logic | ||
+ | * make sure you understand what is going on | ||
+ | * ask questions to get clarification! | ||
+ | * the output from these programs once compiled and ran | ||
+ | * analyze the output | ||
+ | * make sure you understand what is going on | ||
+ | * ask questions to get clarification! | ||
+ | |||
+ | ====Node application programs==== | ||
+ | Once again we find ourselves in **testing/ | ||
+ | |||
+ | * **node-app-arrtolist.c** | ||
+ | * **node-app-display2.c** | ||
+ | * **node-app-test3.c** | ||
+ | |||
+ | Take a look at these new additions. Your task for this project will involve implementing requested functionality/ | ||
====Building the code==== | ====Building the code==== | ||
- | You've made changes to **node-app-display.c**, and are ready to see your results. What do we do? | + | You've made changes to **node-app-display2.c**, and are ready to see your results. What do we do? |
- | First, | + | First, |
<cli> | <cli> | ||
- | lab46:~/ | + | lab46:~$ cd src/ |
- | lab46:~/src/ | + | lab46: |
- | lab46: | + | |
- | lab46: | + | |
</ | </ | ||
- | **OR:** You may want to have **two** terminals open- in one you are situated | + | Keep your other terminal |
===cleaning things out=== | ===cleaning things out=== | ||
- | If you've already | + | If you've already |
<cli> | <cli> | ||
lab46: | lab46: | ||
+ | make[1]: Entering directory '/ | ||
+ | make[2]: Entering directory '/ | ||
+ | rm -f *.swp *.o cp.o mk.o rm.o core | ||
+ | make[2]: Leaving directory '/ | ||
+ | make[1]: Leaving directory '/ | ||
+ | make[1]: Entering directory '/ | ||
+ | make[2]: Entering directory '/ | ||
+ | make[3]: Entering directory '/ | ||
+ | rm -f *.swp *.o ../ | ||
+ | make[3]: Leaving directory '/ | ||
+ | make[3]: Entering directory '/ | ||
+ | rm -f *.swp *.o ../ | ||
+ | make[3]: Leaving directory '/ | ||
+ | make[2]: Leaving directory '/ | ||
+ | make[1]: Leaving directory '/ | ||
+ | lab46: | ||
</ | </ | ||
Line 224: | Line 296: | ||
<cli> | <cli> | ||
lab46: | lab46: | ||
+ | ... | ||
</ | </ | ||
- | |||
====Our binaries==== | ====Our binaries==== | ||
Compiled executables go in the **bin** directory, so if we change into there and take a look around we see: | Compiled executables go in the **bin** directory, so if we change into there and take a look around we see: | ||
Line 237: | Line 309: | ||
====Run the program==== | ====Run the program==== | ||
- | To run **node-app-display**, we'd do the following (specify a relative path to the executable): | + | To run **node-app-display2**, we'd do the following (specify a relative path to the executable): |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
</ | </ | ||
Line 249: | Line 321: | ||
<cli> | <cli> | ||
- | lab46: | + | lab46: |
Enter a value (-1 to quit): 6 | Enter a value (-1 to quit): 6 | ||
Enter a value (-1 to quit): 17 | Enter a value (-1 to quit): 17 | ||
Line 263: | Line 335: | ||
**NOTE**: This is just example input. Not only should your program work with this, but lists of any length, containing any arrangement of valid values. | **NOTE**: This is just example input. Not only should your program work with this, but lists of any length, containing any arrangement of valid values. | ||
- | ====Your task==== | + | **NOTE2**: The output of **node-app-display2** should be pretty much identical to that of **node-app-display**, |
- | You are specifically responsible | + | |
+ | ======Your task====== | ||
+ | This project has you making changes to 3 files, all in the **testing/ | ||
+ | |||
+ | * **node-app-arrtolist.c** - convert an existing array to a linked list | ||
+ | * **node-app-display2.c** | ||
+ | * **node-app-test3.c** | ||
+ | |||
+ | In addition to the stated tasks, you are to convert the code in these 3 programs to use node library functions (i.e. once complete, you should no longer be calling **malloc()** to create new nodes, and you shouldn' | ||
+ | |||
+ | =====node-app-test3===== | ||
+ | A big aspect of the **node0** and **node1** projects is to get you acclimated to the overall structure of the project organization, | ||
+ | |||
+ | So, along that path, your task with **node-app-test3** is to re-implement the functionality of **node-app-test2** (previously provided as a complete running program in the **node0** project), and to convert it over to using node library functions. | ||
+ | |||
+ | That means: | ||
+ | |||
+ | * no more explicit **malloc()** calls, value initializations to 0, initial next pointers to NULL; use **mknode()** instead | ||
+ | * use of **cpnode()** where you have instances of duplicated nodes (this DOES happen in **node-app-test2**. | ||
+ | |||
+ | You are to get a program that produces the same functional output (obviously with different displayed addresses), by using the node library and its functions. | ||
+ | |||
+ | The skeleton is there, you just need to adapt the code. | ||
+ | |||
+ | =====node-app-arrtolist===== | ||
+ | As a means of testing your understanding, | ||
+ | |||
+ | Your task is to add in logic that builds a list, one node at a time, containing the same values (and in the same order) as is found in that array, and to then display the linked list to STDOUT, where we should see identical information. | ||
+ | |||
+ | Sample | ||
<cli> | <cli> | ||
- | 6 -> 17 -> 23 -> 4 -> 56 -> 2 -> NULL | + | lab46: |
+ | Array: 3 1 4 1 5 9 2 6 5 3 5 8 9 7 | ||
+ | List: 3 1 4 1 5 9 2 6 5 3 5 8 9 7 | ||
+ | lab46: | ||
</ | </ | ||
- | It needs to work for whatever | + | As the array is defined with set values, your output, when complete and correct, should always be the same. This tends to be a good exercise in demonstrating you understand conceptually what is going on and can perform the necessary node manipulations |
+ | |||
+ | Again, be sure to use node library functions (like **mknode()**) in this program. | ||
+ | |||
+ | =====node-app-display2===== | ||
+ | In the **node0** project we had to implement the display functionality for the list being built. | ||
+ | |||
+ | Here, we work with that same idea, only we change a few things around structurally in the program- the final output should still be the same, but the code to produce it will be different. | ||
+ | |||
+ | Basically, there are three items for you to address: | ||
- | You need to display | + | * convert your raw **malloc()** calls and node initializations |
+ | * switch | ||
+ | * your display functionality can remain a **while** | ||
+ | * move your display code into a dedicated **display()** function, which takes as a parameter a Node pointer pointing | ||
+ | * This starts warming us up to future projects, where we'll be using and calling lots of functions | ||
- | Finally, when you have exhausted your list, display | + | The output should be the same as experienced in **node-app-display**, the first version |
=====Submission Criteria===== | =====Submission Criteria===== | ||
Line 280: | Line 397: | ||
* Code must compile cleanly (no warnings or errors) | * Code must compile cleanly (no warnings or errors) | ||
+ | * **node-app-test3**, | ||
* Executed programs must display in a manner similar to provided output | * Executed programs must display in a manner similar to provided output | ||
* Processing must be correct based on input given and output requested | * Processing must be correct based on input given and output requested |