mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 06:07:20 +08:00 
			
		
		
		
	* add dart chapter_array_and_linkedlist * update my_list.dart * update chapter_array_and_linkedlist * Update my_list.dart * Update array.dart * Update file name * Add chapter_computational_complexity * Add chapter_computational_complexity * add space_complexity class and format code * remove class --------- Co-authored-by: huangjianqing <huangjianqing@52tt.com> Co-authored-by: Yudong Jin <krahets@163.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			327 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			327 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
/**
 | 
						|
 * File: ListNode
 | 
						|
 * Created Time: 2023-01-23
 | 
						|
 * Author: Jefferson (JeffersonHuang77@gmail.com)
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * Definition for a singly-linked list node
 | 
						|
 */
 | 
						|
class ListNode {
 | 
						|
  int val;
 | 
						|
  ListNode? next;
 | 
						|
 | 
						|
  ListNode(this.val, [this.next]);
 | 
						|
 | 
						|
  @override
 | 
						|
  String toString() {
 | 
						|
    return 'ListNode{val: $val, next: $next}';
 | 
						|
  }
 | 
						|
}
 |