This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
user:apardini:portfolio:cprogproject2 [2015/02/05 01:25] – [Procedure] apardini | user:apardini:portfolio:cprogproject2 [2015/02/25 15:17] (current) – [Procedure] apardini | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ======Project: | + | ======Project: |
+ | |||
+ | Date Set 15 February - 25 February 2015 | ||
+ | |||
- | Date Set 29th January - 04 February | ||
=====Objectives===== | =====Objectives===== | ||
- | This project | + | In this project |
- | Similar parts of the last project appear in project02. The list of numbers is manipulated depending on the task. | + | |
- | SLN0 involves sharing pseudo-code and drawing pictures. | ||
=====Prerequisites===== | =====Prerequisites===== | ||
In order to successfully accomplish/ | In order to successfully accomplish/ | ||
- | * resource1 | + | * Functions |
- | * resource2 | + | * Pointers |
- | * resource3 | + | * Structs |
- | * experience1 | + | * nodes |
- | * experience2 | + | * stacks, queues |
* etc. | * etc. | ||
=====Background===== | =====Background===== | ||
- | State the idea or purpose of the project. What are you attempting to pursue? | + | This project involves producing code for the following function: |
- | Upon approval, you'll want to fill this section out with more detailed background information. DO NOT JUST PROVIDE A LINK. | + | * Unordered List Itemunit-mklist.c - unit test for mklist() library function |
- | + | * unit-displayf.c - unit test for displayf() library function | |
- | Providing any links to original source material, such as from a project page, is a good idea. | + | * unit-insert.c - unit test for insert() library function |
- | + | * unit-getpos.c - unit test for getpos() library function | |
- | You'll want to give a general overview of what is going to be accomplished | + | * unit-setpos.c - unit test for setpos() library function |
=====Scope===== | =====Scope===== | ||
Line 39: | Line 40: | ||
=====Procedure===== | =====Procedure===== | ||
- | Process/ | + | Throughout the whole break i was having difficulties accessing the info and after values on the node of the (List) call. This was due to simple placement of braces and using the pointer in the right spot. Currently able to compile but when run in program something weird happens. Within my functions i didn't add in an if function that contained the statement: if( nodeCount != NULL) This is important because the rules state if list is not NULL |
- | + | ||
- | {{: | + | |
- | + | ||
- | {{: | + | |
- | + | ||
- | {{: | + | |
- | + | ||
- | + | ||
- | Final pseudo-code & pictures | + | |
- | + | ||
- | {{:user: | + | |
- | + | ||
- | {{: | + | |
- | + | ||
- | {{: | + | |
=====Code===== | =====Code===== | ||
Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within < | Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within < | ||
Line 72: | Line 58: | ||
#include < | #include < | ||
+ | |||
+ | #include < | ||
+ | #include " | ||
int main() | int main() | ||
{ | { | ||
- | printf("Hello, World!\n" | + | char data[] = { 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8, 9, 7 }; |
- | return(0); | + | int i; |
+ | |||
+ | fprintf(stdout, | ||
+ | |||
+ | //This for loop prints the array to the screen | ||
+ | for(i = 0; i < 14; i++) | ||
+ | |||
+ | fprintf(stdout, "%hhd ", *(data+i)); | ||
+ | fprintf(stdout, | ||
+ | |||
+ | struct node *first; | ||
+ | struct node *nodeMark; | ||
+ | i = 0; //Sets loop counter to 0 | ||
+ | |||
+ | first = mknode(data[i]); | ||
+ | |||
+ | nodeMark = first; | ||
+ | //This for loop loads the array into a list | ||
+ | for(i = 1; i < 14; i++) | ||
+ | { | ||
+ | nodeMark -> after = mknode(data[i]); | ||
+ | nodeMark = nodeMark -> after; | ||
+ | } | ||
+ | |||
+ | nodeMark = first; | ||
+ | fprintf(stdout, | ||
+ | |||
+ | while (nodeMark != NULL) | ||
+ | { | ||
+ | fprintf(stdout," | ||
+ | nodeMark = nodeMark -> after; | ||
+ | } | ||
+ | |||
+ | return(0); | ||
} | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | #include < | ||
+ | #include " | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | Node *tmp, *tmp2, | ||
+ | char input; | ||
+ | |||
+ | first = tmp = tmp2 = (Node *) malloc (sizeof(Node)*1); | ||
+ | tmp -> info = 0; | ||
+ | tmp -> after = NULL; | ||
+ | |||
+ | fprintf(stdout, | ||
+ | fscanf(stdin, | ||
+ | |||
+ | while (input != -1) | ||
+ | { | ||
+ | tmp2 -> info = input; | ||
+ | |||
+ | tmp2 -> after = (Node *) malloc (sizeof(Node)*1); | ||
+ | tmp2 -> after -> info = 0; | ||
+ | tmp2 -> after -> after = NULL; | ||
+ | |||
+ | fprintf(stdout, | ||
+ | fscanf(stdin, | ||
+ | |||
+ | if (input == -1) | ||
+ | { | ||
+ | free(tmp2 -> after); | ||
+ | tmp2 -> after = NULL; | ||
+ | } | ||
+ | else | ||
+ | tmp2 = tmp2 -> after; | ||
+ | } | ||
+ | // Added print section with do loop | ||
+ | tmp2 = first; | ||
+ | fprintf(stdout," | ||
+ | while (tmp2 != NULL) | ||
+ | { | ||
+ | fprintf(stdout," | ||
+ | tmp2 = tmp2 -> after; | ||
+ | } | ||
+ | |||
+ | // Added print section with do loop | ||
+ | tmp2 = first; | ||
+ | fprintf(stdout," | ||
+ | while (tmp2 != NULL) | ||
+ | { | ||
+ | fprintf(stdout," | ||
+ | tmp2 = tmp2 -> after; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | return(0); | ||
+ | } | ||
+ | |||
+ | |||
</ | </ | ||