sets.nim 831 B

123456789101112131415161718192021222324252627282930
  1. #
  2. #
  3. # Nim's Runtime Library
  4. # (c) Copyright 2012 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. # set handling
  10. type
  11. NimSet = array[0..4*2048-1, uint8]
  12. {.deprecated: [TNimSet: NimSet].}
  13. proc countBits32(n: int32): int {.compilerproc.} =
  14. var v = n
  15. v = v -% ((v shr 1'i32) and 0x55555555'i32)
  16. v = (v and 0x33333333'i32) +% ((v shr 2'i32) and 0x33333333'i32)
  17. result = ((v +% (v shr 4'i32) and 0xF0F0F0F'i32) *% 0x1010101'i32) shr 24'i32
  18. proc countBits64(n: int64): int {.compilerproc.} =
  19. result = countBits32(toU32(n and 0xffffffff'i64)) +
  20. countBits32(toU32(n shr 32'i64))
  21. proc cardSet(s: NimSet, len: int): int {.compilerproc.} =
  22. result = 0
  23. for i in countup(0, len-1):
  24. inc(result, countBits32(int32(s[i])))