gpt4 book ai didi

c - 如何将二进制字符串转换为多项式形式

转载 作者:行者123 更新时间:2023-11-30 17:23:58 25 4
gpt4 key购买 nike

我有一个 1001 形式的二进制字符串,我想将其转换为 c 中的 x^3+1。这怎么可能?是否有任何内置函数可以实现这一点。

最佳答案

I have a binary string in the form of 1001 and i want to convert it into x^3+1 in c.How it is possible ? Is there is any built-in function for that.

没有内置函数。

#include <stdio.h>
#include <string.h>

int main()
{
char binary_string[] = "1001";
int degree = strlen(binary_string) - 1, exponent, terms = 0;
for (exponent = degree; 0 <= exponent; --exponent)
if (binary_string[degree-exponent] == '1')
{
if (terms++) printf("+");
switch (exponent)
{
case 0: printf("1"); break;
case 1: printf("x"); break;
default: printf("x^%d", exponent); break;
}
}
puts("");
}

关于c - 如何将二进制字符串转换为多项式形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27351818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com