mirror of
				https://git.wolves.top/wolves/leetcode.git
				synced 2025-11-04 09:16:32 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			608 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			608 B
		
	
	
	
		
			C
		
	
	
	
	
	
struct List{
 | 
						|
    int val;
 | 
						|
    struct List * next;
 | 
						|
};
 | 
						|
 | 
						|
void bubbleListSort(List *head) {
 | 
						|
    if (head == nullptr) return; // 空链表检查
 | 
						|
    
 | 
						|
    List *temp2;
 | 
						|
    int temp;
 | 
						|
    bool swapped;
 | 
						|
    do {
 | 
						|
        swapped = false;
 | 
						|
        temp2 = head;
 | 
						|
        while (temp2->next) {
 | 
						|
            if (temp2->next->val < temp2->val) {
 | 
						|
                temp = temp2->val;
 | 
						|
                temp2->val = temp2->next->val;
 | 
						|
                temp2->next->val = temp;
 | 
						|
                swapped = true;
 | 
						|
            }
 | 
						|
            temp2 = temp2->next;
 | 
						|
        }
 | 
						|
    } while (swapped); // 如果没有发生交换,提前结束
 | 
						|
} |