对字符串进行编码

发布于 2025-01-09 17:48:17 字数 1432 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手心的温暖 2025-01-16 17:48:17

这可能意味着 base4 中的 b = 2、a = 1、c = 3 和 babca = 21231。

This could mean b = 2, a = 1, c = 3, and babca = 21231 in base4.

梦旅人picnic 2025-01-16 17:48:17

如何使用base4转换由a、b、c、d组成的字符串

在这种情况下,a,b,c,d 是数字,传统上 0...9 用于具有基数的系统<= 10,但也可以使用其他字符。例如,您可以使用 -+ 编写二进制数。

请注意,各种基本系统的工作方式相同,但只是使用不同数量的后续幂。考虑以 10 为基数的系统中的 21231,它是:

2 * 10 ** 4 + 1 * 10 ** 3 + 2 * 10 ** 2 + 3 * 10 ** 1 + 1 * 10 ** 0

How can a string made up of a,b,c,d be converted using base4

In this case a,b,c,d are digits, traditionally 0...9 are used for system with base <= 10, but other characters might be used. For example say you might write binary number using - and +.

Note that various base systems are working same way, but are just using subsequent powers of different number. Consider 21231 in base-10 system, it is:

2 * 10 ** 4 + 1 * 10 ** 3 + 2 * 10 ** 2 + 3 * 10 ** 1 + 1 * 10 ** 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文