repush some changes
This commit is contained in:
parent
b2074c0351
commit
8ced1b12fc
|
@ -3,25 +3,25 @@
|
||||||
|
|
||||||
typedef struct Node {
|
typedef struct Node {
|
||||||
int value;
|
int value;
|
||||||
struct Node* next;
|
struct Node *next;
|
||||||
struct Node* prev;
|
struct Node *prev;
|
||||||
} Node;
|
} Node;
|
||||||
|
|
||||||
typedef struct LinkedList {
|
typedef struct LinkedList {
|
||||||
int length;
|
int length;
|
||||||
Node* head;
|
Node *head;
|
||||||
Node* tail;
|
Node *tail;
|
||||||
} LinkedList;
|
} LinkedList;
|
||||||
|
|
||||||
LinkedList* new_linked_list() {
|
LinkedList *new_linked_list() {
|
||||||
LinkedList* ll = malloc(sizeof(LinkedList));
|
LinkedList *ll = malloc(sizeof(LinkedList));
|
||||||
ll->length = 0;
|
ll->length = 0;
|
||||||
|
|
||||||
return (ll);
|
return (ll);
|
||||||
}
|
}
|
||||||
|
|
||||||
Node* new_node(int value) {
|
Node *new_node(int value) {
|
||||||
Node* n = malloc(sizeof(Node));
|
Node *n = malloc(sizeof(Node));
|
||||||
n->value = value;
|
n->value = value;
|
||||||
n->next = NULL;
|
n->next = NULL;
|
||||||
n->prev = NULL;
|
n->prev = NULL;
|
||||||
|
@ -29,7 +29,7 @@ Node* new_node(int value) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// append - insert a node at the end of the linked list
|
// append - insert a node at the end of the linked list
|
||||||
void append(LinkedList* list, Node* n) {
|
void append(LinkedList *list, Node *n) {
|
||||||
if (list->length == 0) {
|
if (list->length == 0) {
|
||||||
list->head = n;
|
list->head = n;
|
||||||
list->tail = n;
|
list->tail = n;
|
||||||
|
@ -43,7 +43,7 @@ void append(LinkedList* list, Node* n) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// prepend - insert a node at the front of the linked list
|
// prepend - insert a node at the front of the linked list
|
||||||
void preppend(LinkedList* list, Node* node) {
|
void preppend(LinkedList *list, Node *node) {
|
||||||
if (list->length == 0) {
|
if (list->length == 0) {
|
||||||
list->head = node;
|
list->head = node;
|
||||||
list->tail = node;
|
list->tail = node;
|
||||||
|
@ -58,7 +58,7 @@ void preppend(LinkedList* list, Node* node) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// insert at - insert a node at a given index
|
// insert at - insert a node at a given index
|
||||||
void insert_at(LinkedList* list, Node* node, int index) {
|
void insert_at(LinkedList *list, Node *node, int index) {
|
||||||
if (index == 0) {
|
if (index == 0) {
|
||||||
preppend(list, node);
|
preppend(list, node);
|
||||||
} else if (index == list->length) {
|
} else if (index == list->length) {
|
||||||
|
@ -66,7 +66,7 @@ void insert_at(LinkedList* list, Node* node, int index) {
|
||||||
} else if (index > list->length || index < 0) {
|
} else if (index > list->length || index < 0) {
|
||||||
printf("ERROR: cannot add to list at index position %d, this is beyond the current index\n", index);
|
printf("ERROR: cannot add to list at index position %d, this is beyond the current index\n", index);
|
||||||
} else {
|
} else {
|
||||||
Node* current_node_at_index = list->head;
|
Node *current_node_at_index = list->head;
|
||||||
// get to the ith node
|
// get to the ith node
|
||||||
for (int i = 0; i < index; i++) {
|
for (int i = 0; i < index; i++) {
|
||||||
current_node_at_index = current_node_at_index->next;
|
current_node_at_index = current_node_at_index->next;
|
||||||
|
@ -80,16 +80,16 @@ void insert_at(LinkedList* list, Node* node, int index) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_length(LinkedList* list) {
|
int get_length(LinkedList *list) {
|
||||||
return (list->length);
|
return (list->length);
|
||||||
}
|
}
|
||||||
|
|
||||||
void destroy_list(LinkedList* list) {
|
void destroy_list(LinkedList *list) {
|
||||||
// if any nodes are in list destroy them first
|
// if any nodes are in list destroy them first
|
||||||
if (list->length > 0) {
|
if (list->length > 0) {
|
||||||
Node* current_node = list->head;
|
Node *current_node = list->head;
|
||||||
while (current_node != NULL) {
|
while (current_node != NULL) {
|
||||||
Node* next_node = current_node->next;
|
Node *next_node = current_node->next;
|
||||||
free(current_node);
|
free(current_node);
|
||||||
current_node = next_node;
|
current_node = next_node;
|
||||||
}
|
}
|
||||||
|
@ -99,8 +99,8 @@ void destroy_list(LinkedList* list) {
|
||||||
free(list);
|
free(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_list(LinkedList* list) {
|
void print_list(LinkedList *list) {
|
||||||
Node* curr = list->head;
|
Node *curr = list->head;
|
||||||
printf("[ ");
|
printf("[ ");
|
||||||
while (curr != NULL) {
|
while (curr != NULL) {
|
||||||
printf("%d ", curr->value);
|
printf("%d ", curr->value);
|
||||||
|
@ -110,9 +110,9 @@ void print_list(LinkedList* list) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
LinkedList* list = new_linked_list();
|
LinkedList *list = new_linked_list();
|
||||||
Node* a = new_node(10);
|
Node *a = new_node(10);
|
||||||
Node* b = new_node(11);
|
Node *b = new_node(11);
|
||||||
preppend(list, a);
|
preppend(list, a);
|
||||||
preppend(list, b);
|
preppend(list, b);
|
||||||
preppend(list, new_node(12));
|
preppend(list, new_node(12));
|
||||||
|
|
6
c/qs.c
6
c/qs.c
|
@ -5,9 +5,9 @@
|
||||||
// of it and everything greater than it on the right
|
// of it and everything greater than it on the right
|
||||||
int partition(int arr[], int lo, int hi) {
|
int partition(int arr[], int lo, int hi) {
|
||||||
int pivot_value = arr[hi];
|
int pivot_value = arr[hi];
|
||||||
int idx = -1; // this will keep track of current location of values less then the pivot
|
int idx = lo - 1; // this will keep track of current location of values less then the pivot
|
||||||
|
|
||||||
for (int i = 0; i < hi; i++) {
|
for (int i = lo; i < hi; i++) {
|
||||||
if (arr[i] <= pivot_value) {
|
if (arr[i] <= pivot_value) {
|
||||||
idx++;
|
idx++;
|
||||||
|
|
||||||
|
@ -46,4 +46,4 @@ int main() {
|
||||||
printf("%d ", arr[i]);
|
printf("%d ", arr[i]);
|
||||||
}
|
}
|
||||||
printf("]\n");
|
printf("]\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue