mirror of
				https://git.wolves.top/wolves/leetcode.git
				synced 2025-11-04 09:16:32 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			108 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			108 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef List_h
 | 
						|
#define List_h
 | 
						|
struct ListNode{
 | 
						|
    int value;
 | 
						|
    struct ListNode * next;
 | 
						|
}
 | 
						|
 | 
						|
#endif //List_h
 |