Leap year check using bitwise operators (amazing speed)

后端 未结 2 1890
执笔经年
执笔经年 2020-12-08 08:39

Someone on JSPerf dropped an amazingly fast implementation for checking leap years of the ISO calendar (link: Odd bit manipulations):

function isLeapYear(yea         


        
相关标签:
2条回答
  • 2020-12-08 08:49

    year & 3 is the same as year % 4. Not so tricky there, it just represents the usual 4-year cycle.

    year & 15 is the same as year % 16.

    So, it's not a leap year if the year doesn't divide evenly by 4, or if it doesn't divide evenly by 16 but does divide evenly by 25. This means that every multiple of 25 is not a leap year unless it's also a multiple of 16. Since 16 and 25 don't have any common factors, the only time both conditions are met is when the year is a multiple of 16*25, or 400 years. The multiples of 4*25 will be considered not leap years, accounting for the 100 year cycle.

    1900 wasn't a leap year because it was divisible by 100, 2000 was a leap year because it was divisible by 400, and 2100 won't be a leap year.

    0 讨论(0)
  • 2020-12-08 09:07

    If a number is divisible by 16 and divisible by 25, it's divisible by four times 25 (100) as well as 16 times 25 (400).

    0 讨论(0)
提交回复
热议问题