Commit c53307c
Changed files (5)
assignments/01/stack_test.c
@@ -104,7 +104,7 @@ static void destroy(Stack *stack) {
free(stack);
}
-void inspect(Queue *q) {
+static void inspect(Queue *q) {
Node *tmp = q->head;
if (q->size == 0) {
assignments/01/swap_linked_list_test.c
@@ -0,0 +1,280 @@
+#include <cgreen/cgreen.h>
+/*
+Swap two adjacent elements in a list by adjusting
+only the links (and not the data) using a:
+* singly-linked list
+* doubly-linked list
+*/
+
+Describe(SwapLinkedList);
+BeforeEach(SwapLinkedList){ }
+AfterEach(SwapLinkedList){ }
+
+struct node {
+ int data;
+ struct node *next;
+};
+
+typedef struct node Node;
+
+static void inspect(Node *node) {
+ if (!node) return;
+
+ printf("*******\n");
+ while (node) {
+ printf("\t%d\n", node->data);
+ node = node->next;
+ }
+ printf("*******\n");
+}
+
+Node *initialize(int data) {
+ Node *node = malloc(sizeof(Node));
+ node->data = data;
+ node->next = NULL;
+ return node;
+}
+
+Node *add(Node *head, int data) {
+ Node *tail;
+ Node *tmp = head;
+
+ while(tmp) {
+ if (!tmp->next)
+ break;
+ tmp = tmp->next;
+ }
+ tail = tmp;
+ tail->next = initialize(data);
+ return tail->next;
+}
+
+Node *get(Node *from, int index) {
+ if (!from || index < 0) return NULL;
+
+ while(index > 0 && from){
+ from = from->next;
+ index--;
+ }
+ return from;
+}
+
+static int size(Node *head) {
+ int i = 0;
+ for (Node *tmp = head; tmp && tmp != NULL; tmp = tmp->next) i++;
+ return i;
+}
+
+void swap(Node **head, int x, int y) {
+ Node *xp, *yp, *xc, *yc, *tmp;
+ int count = size(*head);
+
+ if (x == y) return;
+ if (x >= count) return;
+ if (y >= count) return;
+
+ xp = get(*head, x - 1);
+ yp = get(*head, y - 1);
+ xc = get(*head, x);
+ yc = get(*head, y);
+
+ if (x == 0) {
+ *head = yc;
+ } else {
+ xp->next = yc;
+ }
+ if (y == 0) {
+ *head = xc;
+ } else {
+ yp->next = xc;
+ }
+
+ tmp = yc->next;
+ yc->next = xc->next;
+ xc->next = tmp;
+}
+
+Ensure(SwapLinkedList, when_getting_head) {
+ Node *head = initialize(100);
+ assert_that(get(head, 0), is_equal_to(head));
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_getting_mid) {
+ Node *head = initialize(100);
+
+ Node *mid = add(head, 200);
+ add(head, 300);
+
+ assert_that(get(head, 1), is_equal_to(mid));
+ assert_that(get(head, 1)->data, is_equal_to(200));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_getting_tail) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ Node *tail = add(head, 300);
+
+ assert_that(get(head, 2), is_equal_to(tail));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_getting_from_empty_list) {
+ assert_that(get(NULL, 2), is_equal_to(NULL));
+}
+
+Ensure(SwapLinkedList, when_getting_negative_index) {
+ Node *head = initialize(100);
+
+ assert_that(get(head, -1), is_equal_to(NULL));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_getting_index_out_of_range) {
+ Node *head = initialize(100);
+
+ assert_that(get(head, 1), is_equal_to(NULL));
+
+ free(head);
+}
+
+
+Ensure(SwapLinkedList, when_swapping_head) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ add(head, 300);
+
+ swap(&head, 0, 1);
+
+ assert_that(get(head, 0), is_non_null);
+ assert_that(get(head, 0)->data, is_equal_to(200));
+ assert_that(get(head, 1), is_non_null);
+ assert_that(get(head, 1)->data, is_equal_to(100));
+ assert_that(get(head, 2), is_non_null);
+ assert_that(get(head, 2)->data, is_equal_to(300));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_swapping_y_head) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ add(head, 300);
+
+ swap(&head, 1, 0);
+
+ assert_that(get(head, 0), is_non_null);
+ assert_that(get(head, 0)->data, is_equal_to(200));
+ assert_that(get(head, 1), is_non_null);
+ assert_that(get(head, 1)->data, is_equal_to(100));
+ assert_that(get(head, 2), is_non_null);
+ assert_that(get(head, 2)->data, is_equal_to(300));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_swapping_mid) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ add(head, 300);
+ add(head, 400);
+
+ swap(&head, 1, 2);
+
+ assert_that(get(head, 0)->data, is_equal_to(100));
+ assert_that(get(head, 1)->data, is_equal_to(300));
+ assert_that(get(head, 2)->data, is_equal_to(200));
+ assert_that(get(head, 3)->data, is_equal_to(400));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_swapping_y_mid) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ add(head, 300);
+ add(head, 400);
+
+ swap(&head, 2, 1);
+
+ assert_that(get(head, 0)->data, is_equal_to(100));
+ assert_that(get(head, 1)->data, is_equal_to(300));
+ assert_that(get(head, 2)->data, is_equal_to(200));
+ assert_that(get(head, 3)->data, is_equal_to(400));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_swapping_tail) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ add(head, 300);
+
+ swap(&head, 1, 2);
+
+ assert_that(get(head, 0), is_non_null);
+ assert_that(get(head, 0)->data, is_equal_to(100));
+ assert_that(get(head, 1), is_non_null);
+ assert_that(get(head, 1)->data, is_equal_to(300));
+ assert_that(get(head, 2), is_non_null);
+ assert_that(get(head, 2)->data, is_equal_to(200));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_swapping_index_out_of_range) {
+ Node *head = initialize(100);
+
+ add(head, 200);
+ add(head, 300);
+
+ swap(&head, 1, 3);
+
+ assert_that(get(head, 0)->data, is_equal_to(100));
+ assert_that(get(head, 1)->data, is_equal_to(200));
+ assert_that(get(head, 2)->data, is_equal_to(300));
+
+ free(head);
+}
+
+Ensure(SwapLinkedList, when_swapping_self) {
+ Node *head = initialize(100);
+
+ swap(&head, 0, 0);
+
+ assert_that(get(head, 0), is_non_null);
+ assert_that(get(head, 0)->data, is_equal_to(100));
+
+ free(head);
+}
+
+TestSuite *swap_linked_list_tests() {
+ TestSuite *suite = create_test_suite();
+
+ add_test_with_context(suite, SwapLinkedList, when_getting_head);
+ add_test_with_context(suite, SwapLinkedList, when_getting_mid);
+ add_test_with_context(suite, SwapLinkedList, when_getting_tail);
+ add_test_with_context(suite, SwapLinkedList, when_getting_from_empty_list);
+ add_test_with_context(suite, SwapLinkedList, when_getting_negative_index);
+ add_test_with_context(suite, SwapLinkedList, when_getting_index_out_of_range);
+
+ add_test_with_context(suite, SwapLinkedList, when_swapping_head);
+ add_test_with_context(suite, SwapLinkedList, when_swapping_y_head);
+ add_test_with_context(suite, SwapLinkedList, when_swapping_mid);
+ add_test_with_context(suite, SwapLinkedList, when_swapping_y_mid);
+ add_test_with_context(suite, SwapLinkedList, when_swapping_tail);
+ add_test_with_context(suite, SwapLinkedList, when_swapping_index_out_of_range);
+ add_test_with_context(suite, SwapLinkedList, when_swapping_self);
+
+ return suite;
+}
unit/03/README.md
@@ -12,3 +12,28 @@ Go to Data Structure Visualizations at http://www.cs.usfca.edu/~galles/visualiza
* Queues: Linked List Implementation
* Lists: Array Implementation (available in Java version)
* Lists: Linked List Implementation (available in Java version)
+
+# Linked Lists
+
+Have advantages and disadvantages over array based List interface.
+
+Advantage
+
+* more dynamic
+
+Disadvantage:
+
+* using `get(i)` or `set(i, x)` in constant time.
+
+## Singly-Linked List
+
+SLList: is a sequence of Nodes with a reference to a value and the next node.
+
+```java
+class Node {
+ T x;
+ Node next;
+}
+```
+
+For efficiency the variables `head` and `tail` are used to keep track of the first and last node.
main.c
@@ -3,6 +3,7 @@
TestSuite *words_tests();
TestSuite *priority_queue_tests();
TestSuite *stack_tests();
+TestSuite *swap_linked_list_tests();
int main(int argc, char **argv) {
TestSuite *suite = create_test_suite();
@@ -10,6 +11,7 @@ int main(int argc, char **argv) {
add_suite(suite, words_tests());
add_suite(suite, priority_queue_tests());
add_suite(suite, stack_tests());
+ add_suite(suite, swap_linked_list_tests());
if (argc > 1)
return run_single_test(suite, argv[1], create_text_reporter());
Makefile
@@ -13,8 +13,8 @@ doc : doc/
run : main
./main
-main : main.o words_test.o words.o priority_queue_test.o stack_test.o
- $(CC) main.o words_test.o words.o priority_queue_test.o stack_test.o -lcgreen -o main
+main : main.o words_test.o words.o priority_queue_test.o stack_test.o swap_linked_list_test.o
+ $(CC) main.o words_test.o words.o priority_queue_test.o stack_test.o swap_linked_list_test.o -lcgreen -o main
main.o : main.c
$(CC) -c main.c
@@ -31,6 +31,9 @@ priority_queue_test.o : assignments/01/priority_queue_test.c
stack_test.o : assignments/01/stack_test.c
$(CC) -c assignments/01/stack_test.c
+swap_linked_list_test.o : assignments/01/swap_linked_list_test.c
+ $(CC) -c assignments/01/swap_linked_list_test.c
+
clean:
rm -f main *.o
rm -fr doc