Skip to content

Instantly share code, notes, and snippets.

View sdsd08013's full-sized avatar
:shipit:
🗾

sky iwasaki sdsd08013

:shipit:
🗾
View GitHub Profile
@sdsd08013
sdsd08013 / linkedList.kt
Last active October 14, 2020 19:11
Kotlin Linked List
data class Node(
var name: String,
var next: Node?
)
fun printNode(node: Node) {
var tmp: Node? = node
while (tmp != null) {
print("${tmp.name}->")
tmp = tmp.next