Start->10->1->8->11-> null
SinglyLinkedList.java
public class SinglyLinkedList{
private ListNode head;
private static class ListNode {
private int data;
private ListNode next;
ListNode(int data){
this.data=data;
this.next=null;
}
}
public static void main(String[] args){
SinglyLinkedList sll = new SinglyLinkedList();
sll.head = new ListNode(10);
ListNode second = new ListNode(1);
ListNode third = new ListNode(8);
ListNode fourth = new ListNode(11);
sll.head.next = second;
second.next = third;
third.next = fourth;
ListNode current = sll.head;
System.out.print("Start->");
while(current != null){
System.out.print(current.data);
System.out.print("->");
current = current.next;
}
System.out.print("null");
}
}
'IT칼럼 > JAVA' 카테고리의 다른 글
지정된 달에서 특정요일(수, 금 ,토)에 해당하는 날짜 받아오기 (0) | 2019.04.23 |
---|---|
Java - String to Integer (0) | 2019.04.19 |
Spring Boot, PostgreSQL, JPA, Hibernate RESTful CRUD API Example (0) | 2019.04.13 |
JAVA 지정한 날짜 기준으로 시작과 끝(일요일/토요일, 1일/말일) 값 구하기 (0) | 2019.04.10 |
Calendar 날짜를 기준으로 요일 정보 받아오기 (0) | 2019.04.06 |