We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185d148 commit 23a66f9Copy full SHA for 23a66f9
src/content/blog/coding/01_位运算.mdx
@@ -26,7 +26,7 @@ import { Collapse } from 'astro-pure/user'
26
1.位运算是计算机科学中的一种基本操作,涉及对二进制位进行直接操作。它在算法优化、数据压缩和加密等领域具有重要应用。
27
本文将介绍一些常用的位运算技巧,包括位掩码、位移操作和布隆过滤器等。
28
位运算技巧可以帮助我们更高效地处理数据,减少内存使用和提高算法性能。
29
-2.本文出自[Bit Twiddling Hacks](https://graphics.stanford.edu/~seander/bithacks.html)
+2.本文出自[Bit Twiddling Hacks](https://graphics.stanford.edu/~seander/bithacks.html), 原文是 C 语言实现, 本文使用java实现,并提供了测试用例
30
</Aside>
31
32
## 1. 计算整数的符号
0 commit comments