fork download
  1. // challenge 305 Easy Permutation Base
  2. // https://w...content-available-to-author-only...t.com/r/dailyprogrammer/comments/5xu7sz/20170306_challenge_305_easy_permutation_base/
  3.  
  4. //package challenge._305_easy
  5.  
  6. import java.math.BigInteger
  7.  
  8. fun toBinary(dec: String): String {
  9. var sb = StringBuilder()
  10. var v: BigInteger = BigInteger(dec)
  11. var n: BigInteger = BigInteger.valueOf(1)
  12. var bits: Int = 1
  13. val two: BigInteger = BigInteger.valueOf(2)
  14. while (true) {
  15. val nextN = n.multiply(two)
  16. if (v.compareTo(nextN) >= 0) {
  17. v = v.minus(nextN)
  18. n = nextN
  19. bits++
  20. } else {
  21. break
  22. }
  23. }
  24. while (bits > 0) {
  25. val rem = v.remainder(two)
  26. sb.append(rem.toString())
  27. v = v.divide(two)
  28. bits--
  29. }
  30. sb = sb.reverse()
  31. println("$dec -> ${sb.toString()}")
  32. return sb.toString()
  33. }
  34.  
  35. fun toDecimal(bin: String): String {
  36. var v = BigInteger.ZERO
  37. var two = BigInteger.valueOf(2)
  38. for (i in 0..bin.length-1) {
  39. v = v.multiply(two) + BigInteger(bin[i].toString())
  40. }
  41. var offset = BigInteger.ZERO
  42. var n = BigInteger.valueOf(1)
  43. var bits = bin.length-1
  44. for (i in 1..bits) {
  45. n = n.multiply(two)
  46. offset = offset.add(n)
  47. }
  48. v = v.add(offset)
  49. println("$bin -> $v")
  50. return v.toString()
  51. }
  52.  
  53. fun main(args: Array<String>) {
  54. toDecimal(toBinary("54"))
  55. toBinary(toDecimal("111000111"))
  56. toDecimal(toBinary("234234234"))
  57. toDecimal(toBinary("234234234234234"))
  58. toDecimal(toBinary("234234234234234234234234"))
  59. toBinary(toDecimal("000111000111111000111111000111111000111"))
  60. toBinary(toDecimal("11111111000111000111111000111111000111111000111"))
  61. }
Success #stdin #stdout 0.06s 4382720KB
stdin
Standard input is empty
stdout
54 -> 11000
11000 -> 54
111000111 -> 965
965 -> 111000111
234234234 -> 101111101100010000101111100
101111101100010000101111100 -> 234234234
234234234234234 -> 10101010000100011101000010100110110010101111100
10101010000100011101000010100110110010101111100 -> 234234234234234
234234234234234234234234 -> 10001100110011101110100000000000000011110000000000101011011000110010101111100
10001100110011101110100000000000000011110000000000101011011000110010101111100 -> 234234234234234234234234
000111000111111000111111000111111000111 -> 610944389061
610944389061 -> 000111000111111000111111000111111000111
11111111000111000111111000111111000111111000111 -> 280986409471941
280986409471941 -> 11111111000111000111111000111111000111111000111