Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- geometry
- Tree
- bit manipulation
- 코딩테스트
- Binary Tree
- greedy
- implement
- string
- Stack
- Number Theory
- dynamic programming
- hash table
- sorting
- 자바
- Math
- Counting
- database
- 파이썬
- array
- 구현
- simulation
- two pointers
- Matrix
- Method
- Class
- Binary Search
- SQL
- Data Structure
- 코테
- java
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 876. Middle of the Linked List 본문
1. Input
1) ListNode head
2. Output
1) 연결 리스트의 중간을 찾아 반환
- 중간이 2개라면 2번째 중간을 반환
3. Constraint
1) 리스트의 노드 수의 범위는 [1, 100]이다.
2) 1 <= Node.val <= 100
4. Example
Input: head = [1,2,3,4,5] -> Output: [3,4,5]
Input: head = [1,2,3,4,5,6] -> Output: [4,5,6]
5. Code
1) 첫 코드(2023/05/31)
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode middleNode(ListNode head) {
ListNode n = head;
int count = 0;
while(n!=null){
count++;
n = n.next;
}
int i = 0;
while(i++<count/2)
head = head.next;
return head;
}
}
- 100%, 65%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 11726. 2×n 타일링 (0) | 2023.06.01 |
---|---|
[LeetCode/Easy] 892. Surface Area of 3D Shapes (0) | 2023.05.31 |
[LeetCode/Easy] 830. Positions of Large Groups (0) | 2023.05.31 |
[LeetCode/Easy] 783. Minimum Distance Between BST Nodes (0) | 2023.05.31 |
[프로그래머스/Lv.0] 저주의 숫자 3 (0) | 2023.05.30 |