Tinyurl-style unique code: potential algorithm to prevent collisions

前端 未结 6 1955
梦如初夏
梦如初夏 2020-12-16 05:18

I have a system that requires a unique 6-digit code to represent an object, and I\'m trying to think of a good algorithm for generating them. Here are the pre-reqs:

6条回答
  •  一整个雨季
    2020-12-16 06:13

    My math is a bit rusty, but I think you just need to ensure that the GCF of N and 64 million is 1. I'd go with a prime number (that doesn't divide evenly into 64 million) just in case though.

提交回复
热议问题