Discuss the good, the bad and the ugly aspects of their code.
Please be gentle in any criticism - we are all learning!
Do you have any questions? Have you learned anything that would be useful to share with the rest of the tutorial?
struct node { int data; struct node *next; };
See list_empty.c and list.h for this weeks linked list tute questions, and testList.c for autotests. Alternatively download all three files at tut_list_files.zip.
struct node *copy(struct node *head);It should call malloc to create a new linked list of the same length and containg the same data.
int identical(struct node *head1, struct node *head2);
int ordered(struct node *head);
The new linked list should also be in strictly increasing order. It should include only elements found in both lists.
set_intersection should call malloc to create the nodes of the new linked list.
set_intersection should have this prototype:
struct node *set_intersection(struct node *set1, struct node *set2);
The new linked list should also be in strictly increasing order. Elements found in both lists should only occur once in the new linked list.
set_union should call malloc to create the nodes of the new linked list.
set_union should have this prototype:
struct node *set_union(struct node *set1, struct node *set2);
Your tutor may still choose to cover some of the questions time permitting.
thirteen_stdin.c
which reads 2 integers from standard input
and then prints all integers divisble
by 13 between those numbers.
Your program should behave like this:
./a.out Enter start: 10 Enter finish: 42 13 26 39
Your program should behave like this:
./a.out 10 42 13 26 39
If error checking was required - what checking would you add to the programs from the previous 2 questions?
median.c
which reads integers until end-of-input is reached.
It should then print the median (middle) of the integers.
If there are an even number of integer you can print either of the two middle integers.
Assume the numbers of integer is > 0 and < 1000.
Assume the integer are entered in sorted (non-decreasing) order.
Your program should behave like this:
./a.out 1 2 4 8 16 5 numbers read. Median was 4
./a.out 16 8 2 1 4 5 numbers read. Median was 4
Since the length of the array is variable you should not create additional arrays, nor assume a maximum array length. You may write extra functions in answering this question. Your function should have the following prototype:
int distinct_nums(int size, int nums[size]);Running the function with the following input:
int nums[] = {7,3,1,4,7,3,6,5,3}; int numDistinct = distinct_nums(9, nums);Should return the value 6 and the first six elements of the array should be changed to: {7,3,1,4,6,5}
int remove_char(char str[], char c)
For example "carpark" and "carpet" have a common prefix length of 4.
// text - the array of strings // arraySize - the number of strings in the array // numChars - print out any strings in the array with more than this number // of characters void printIfLonger(int arraySize, char text[arraySize][MAX_LEN], int numChars);
int x = -9; int *p1 = &x; int *p2; p2 = p1; printf("%d\n", *p2); *p2 = 10; printf("%d\n",x);
int x = -9; int y = 0; while (x != 0){ y--; x++; } printf("%d\n", x); printf("%d\n",y);
int i = -7; int j = 0; while (i != 0){ j = j - i; i++; } printf("%d\n", i); printf("%d\n",j);
char goals[] = "All your goals belong to us."; char *a, *b, *c; a = goals + 5; b = &goals[10]; c = goals + (b - goals) + (b - a);The fragment is valid C. It executes without error. Indicate clearly and exactly what the following expressions evaluate to:
a == goals
a > goals
goals > c
c - b
goals - a
a[0] != b[0]
*c
goals[a - goals] == *a
c[a - b]
int i = 0; int j = 0; char *s = "ceded"; while (s[i] != '\0') { j = j + s[i] - 'a'; i = i + 1; } printf("%d %d\n", i, j);The fragment is valid C. It executes without error. Indicate clearly and exactly what output will be printed.
void sum_prod(int len, int nums[len], int *sum, int *product);
The name of the input file will be the first command line argument.
The name of the output file will be the second command line argument.
In both files there should be one number per line and there will be a maximum of 1000 numbers.