From 4081083f82a39138127f5b35705a81192e1fc4d5 Mon Sep 17 00:00:00 2001 From: Anthony C Date: Wed, 2 Aug 2017 10:30:22 -0400 Subject: [PATCH] Kotlin - Completed RomanNumeral, LinkedList in progress --- kotlin/linked-list/src/main/kotlin/Deque.kt | 61 +++++++++++++++++++ .../src/main/kotlin/RomanNumeral.kt | 42 +++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 kotlin/linked-list/src/main/kotlin/Deque.kt create mode 100644 kotlin/roman-numerals/src/main/kotlin/RomanNumeral.kt diff --git a/kotlin/linked-list/src/main/kotlin/Deque.kt b/kotlin/linked-list/src/main/kotlin/Deque.kt new file mode 100644 index 0000000..1c9b366 --- /dev/null +++ b/kotlin/linked-list/src/main/kotlin/Deque.kt @@ -0,0 +1,61 @@ +class Deque { + var firstNode: Node? = null + var lastNode: Node? = null + + // Remove value at back + fun pop(): T{ + val returnData = lastNode!!.data + lastNode = lastNode?.beforeNode + return returnData + } + + // Add value at back + fun push(elem: T): Unit { + if (firstNode == null) { + firstNode = Node(data = elem, beforeNode = null, afterNode = null) + } else { + if (lastNode == null){ + this.lastNode = Node(data = elem, beforeNode = firstNode, afterNode = null) + firstNode?.linkBefore(this.lastNode!!) + } + else { + this.lastNode?.linkBefore(Node(data = elem, beforeNode = this.lastNode, afterNode = null)) + } + } + } + + // Remove value at front + fun shift(): T{ + val returnData = firstNode!!.data + firstNode = firstNode?.afterNode + return returnData + } + + // Add value at front + fun unshift(elem: T): Unit { + if (firstNode == null) { + firstNode = Node(data = elem, beforeNode = null, afterNode = null) + } else { + if (lastNode == null){ + this.lastNode = this.firstNode + firstNode = Node(data = elem, beforeNode = null, afterNode = this.lastNode) + this.lastNode?.linkAfter(firstNode!!) + } + else { + this.firstNode?.linkAfter(Node(data = elem, beforeNode = null, afterNode = this.firstNode)) + } + } + } +} + +data class Node(val data: R, var beforeNode: Node?, var afterNode: Node?) { + fun linkBefore(afterNode: Node): Unit { + this.afterNode = afterNode + afterNode.beforeNode = this + } + + fun linkAfter(beforeNode: Node): Unit { + this.beforeNode = beforeNode + beforeNode.afterNode = this + } +} \ No newline at end of file diff --git a/kotlin/roman-numerals/src/main/kotlin/RomanNumeral.kt b/kotlin/roman-numerals/src/main/kotlin/RomanNumeral.kt new file mode 100644 index 0000000..9ceb18e --- /dev/null +++ b/kotlin/roman-numerals/src/main/kotlin/RomanNumeral.kt @@ -0,0 +1,42 @@ +class RomanNumeral { + // Implementation lifted from github.com/froderik/roman_numeral_katas + companion object { + fun value(inp: Int): String { + val stringBuilder = StringBuilder() + + val thousands = inp / 1000 + stringBuilder.append(times(thousands, "M")) + + val hundreds = inp / 100 % 10 + stringBuilder.append(times(hundreds, "C", "D", "M")) + + val tens = inp / 10 % 10 + stringBuilder.append(times(tens, "X", "L", "C")) + + val ones = inp% 10 + stringBuilder.append(times(ones, "I", "V", "X")) + + + return String(stringBuilder) + } + + private fun times(number: Int, char: String): String { + val stringBuilder = StringBuilder() + for (i in 0.. number - 1) { + stringBuilder.append(char) + } + return String(stringBuilder) + } + + private fun times(number: Int, onesChar: String, fivesChar: String, tensChar: String): String { + when (number) { + 0 -> return "" + 1, 2, 3 -> return times(number, onesChar) + 4 -> return onesChar + fivesChar + 5, 6, 7, 8 -> return fivesChar + times(number - 5, onesChar) + 9 -> return onesChar + tensChar + else -> throw IllegalArgumentException("Only single digits allowed - not " + number) + } + } + } +} \ No newline at end of file