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
- pointer
- assignment operator
- 포인터
- Data Science
- const
- Deep Learning
- pass by reference
- C++
- function
- 문자열
- Python
- 파이썬
- OOP
- 배열
- predictive analysis
- Pre-processing
- 백준
- Class
- vscode
- 티스토리챌린지
- array
- baekjoon
- 오블완
- Object Oriented Programming
- string
- raw data
- 알고리즘
- 함수
- programming
- 반복문
Archives
- Today
- Total
목록2025/09 (2)
Channi Studies
[Java] Stack with IntNode, two-stack reverse trick
Let's try implementing a Stack in Java using IntNode. The structure of IntNode looks like this: private static class IntNode() { int val; IntNode next; IntNode(int val, IntNode next) { this.val = val; this.next = next; }} We're going to put this private static IntNode class into the Stack class. We call it nested classes, and there are times when we should declare it a..
Data Science/Data Structure & Algorithm
2025. 9. 8. 06:18