Tinyurl-style unique code: potential algorithm to prevent collisions

前端 未结 6 1966
梦如初夏
梦如初夏 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

    There is another method to get a similar result (jumping over the entire set of the values without repeating, nonconsequtively), without using the primes - by using maximum length sequences, which you can generate using specially constructed shift registers.

提交回复
热议问题