mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 10:26:48 +08:00 
			
		
		
		
	 034ee65e9a
			
		
	
	034ee65e9a
	
	
	
		
			
			* Fix the comment in array_deque.go * Fix the comment in bucket_sort.c * Translate the Java code comments to Chinese * Bug fixes * 二分查找 -> 二分搜尋 * Harmonize comments in `utils` between multiple programming languages
		
			
				
	
	
		
			29 lines
		
	
	
		
			568 B
		
	
	
	
		
			Java
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			568 B
		
	
	
	
		
			Java
		
	
	
		
			Executable File
		
	
	
	
	
| /**
 | |
|  * File: ListNode.java
 | |
|  * Created Time: 2022-11-25
 | |
|  * Author: krahets (krahets@163.com)
 | |
|  */
 | |
| 
 | |
| package utils;
 | |
| 
 | |
| /* 链表节点 */
 | |
| public class ListNode {
 | |
|     public int val;
 | |
|     public ListNode next;
 | |
| 
 | |
|     public ListNode(int x) {
 | |
|         val = x;
 | |
|     }
 | |
| 
 | |
|     /* 将列表反序列化为链表 */
 | |
|     public static ListNode arrToLinkedList(int[] arr) {
 | |
|         ListNode dum = new ListNode(0);
 | |
|         ListNode head = dum;
 | |
|         for (int val : arr) {
 | |
|             head.next = new ListNode(val);
 | |
|             head = head.next;
 | |
|         }
 | |
|         return dum.next;
 | |
|     }
 | |
| }
 |