mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 14:18:20 +08:00 
			
		
		
		
	* Add the intial translation of code of all the languages * test * revert * Remove * Add Python and Java code for EN version
		
			
				
	
	
		
			29 lines
		
	
	
		
			579 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			579 B
		
	
	
	
		
			Java
		
	
	
	
	
	
/**
 | 
						|
 * File: ListNode.java
 | 
						|
 * Created Time: 2022-11-25
 | 
						|
 * Author: krahets (krahets@163.com)
 | 
						|
 */
 | 
						|
 | 
						|
package utils;
 | 
						|
 | 
						|
/* Linked list node */
 | 
						|
public class ListNode {
 | 
						|
    public int val;
 | 
						|
    public ListNode next;
 | 
						|
 | 
						|
    public ListNode(int x) {
 | 
						|
        val = x;
 | 
						|
    }
 | 
						|
 | 
						|
    /* Deserialize a list into a linked list */
 | 
						|
    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;
 | 
						|
    }
 | 
						|
}
 |