John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: ~ CMPT125 Finals Study Plan


CMPT 125 Previous Finals

2020

1

2

c

The function moves each node of cur into lists of either less or greater, and concatenates the two lists so less is always before >=

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
LL_node_t * rearrange(LL_node_t * head, int pivot) {
    LL_node_t * cur = head;
    LL_node_t * less = NULL; // pointer to the sublist with data<pivot
    LL_node_t * greater = NULL; // pointer to the sublist with data>=pivot
    LL_node_t * tmp;
    while (cur) {
      tmp = cur  next;
      if (cur  data < pivot) { // add cur to the less list as head
        cur  next = less;
        less = cur;
      } else { // cur→data >= pivot
        cur  next = greater; // add cur to the greater list
        greater = cur;
      }
      cur = tmp;
    }
    // here less is the sublist with all elements<pivot
    // greater is the sublist with all elements>=pivot
    // next we concatenate them
    if (less == NULL)
      return greater;
	
    cur = less; // less is non-empty
    while (cur  next != NULL) // we iterate to the end of the list less,
      cur = cur  next; 
    cur  next = greater; // and add to the tail of the list to greater
    return less;

3

4

2019

1

2

3

1

logic questions

2

3

5


Backlinks


References:

Created:: 2021-12-11 22:19


Interactive Graph