鱼C论坛

 找回密码
 立即注册
查看: 2044|回复: 3

[已解决]翻译语言

[复制链接]
发表于 2023-10-6 21:12:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
from pythonds.basic import Stack
ub = Stack()
def jinzhizhuanhua(num, fundamention):
    dic = "0123456789ABCDEF"
    if num < fundamention:
        ub.push(dic[num])
    else:
        ub.push(dic[num % fundamention])
        jinzhizhuanhua(int(num//fundamention),fundamention)
jinzhizhuanhua(22543253, 16)
for i in range(ub.size()):
    print(ub.pop(),end='')

把这段代码翻译成c语言可以吗,效果相同就行
最佳答案
2023-10-6 21:12:35
可以将这段代码翻译成C语言,实现相同的功能。以下是翻译后的C代码:
#include <stdio.h>

#define MAX_SIZE 100

struct Stack {
    int top;
    char items[MAX_SIZE];
};

void push(struct Stack* stack, char item) {
    if (stack->top == MAX_SIZE - 1) {
        printf("Stack Overflow\n");
        return;
    }
    stack->items[++stack->top] = item;
}

char pop(struct Stack* stack) {
    if (stack->top == -1) {
        printf("Stack Underflow\n");
        return '\0';
    }
    return stack->items[stack->top--];
}

void jinzhizhuanhua(int num, int fundamention) {
    struct Stack ub;
    ub.top = -1;
    char dic[] = "0123456789ABCDEF";

    if (num < fundamention) {
        push(&ub, dic[num]);
    }
    else {
        push(&ub, dic[num % fundamention]);
        jinzhizhuanhua(num/fundamention, fundamention);
    }

    while (ub.top != -1) {
        printf("%c", pop(&ub));
    }
}

int main() {
    jinzhizhuanhua(22543253, 16);
    return 0;
}

这段C代码定义了一个结构体 Stack 来表示栈,实现了 push 和 pop 函数来操作栈。 jinzhizhuanhua 函数实现了进制转换的逻辑,将结果打印出来。在 main 函数中调用 jinzhizhuanhua 来进行进制转换。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-10-6 21:12:35 | 显示全部楼层    本楼为最佳答案   
可以将这段代码翻译成C语言,实现相同的功能。以下是翻译后的C代码:
#include <stdio.h>

#define MAX_SIZE 100

struct Stack {
    int top;
    char items[MAX_SIZE];
};

void push(struct Stack* stack, char item) {
    if (stack->top == MAX_SIZE - 1) {
        printf("Stack Overflow\n");
        return;
    }
    stack->items[++stack->top] = item;
}

char pop(struct Stack* stack) {
    if (stack->top == -1) {
        printf("Stack Underflow\n");
        return '\0';
    }
    return stack->items[stack->top--];
}

void jinzhizhuanhua(int num, int fundamention) {
    struct Stack ub;
    ub.top = -1;
    char dic[] = "0123456789ABCDEF";

    if (num < fundamention) {
        push(&ub, dic[num]);
    }
    else {
        push(&ub, dic[num % fundamention]);
        jinzhizhuanhua(num/fundamention, fundamention);
    }

    while (ub.top != -1) {
        printf("%c", pop(&ub));
    }
}

int main() {
    jinzhizhuanhua(22543253, 16);
    return 0;
}

这段C代码定义了一个结构体 Stack 来表示栈,实现了 push 和 pop 函数来操作栈。 jinzhizhuanhua 函数实现了进制转换的逻辑,将结果打印出来。在 main 函数中调用 jinzhizhuanhua 来进行进制转换。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-6 21:12:46 | 显示全部楼层
当然可以。以下是将给定的 Python 代码翻译成 C 语言的版本,实现了相同的功能:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct Stack {
    char *data;
    int top;
    int capacity;
} Stack;

Stack *create_stack(int capacity) {
    Stack *stack = (Stack *)malloc(sizeof(Stack));
    stack->data = (char *)malloc(capacity * sizeof(char));
    stack->top = -1;
    stack->capacity = capacity;
    return stack;
}

void push(Stack *stack, char value) {
    if (stack->top == stack->capacity - 1) {
        stack->capacity *= 2;
        stack->data = (char *)realloc(stack->data, stack->capacity * sizeof(char));
    }
    stack->data[++stack->top] = value;
}

char pop(Stack *stack) {
    return stack->data[stack->top--];
}

int is_empty(Stack *stack) {
    return stack->top == -1;
}

void jinzhizhuanhua(int num, int fundamention, Stack *stack) {
    const char *dic = "0123456789ABCDEF";
    if (num < fundamention) {
        push(stack, dic[num]);
    } else {
        push(stack, dic[num % fundamention]);
        jinzhizhuanhua(num / fundamention, fundamention, stack);
    }
}

int main() {
    Stack *stack = create_stack(10);
    jinzhizhuanhua(22543253, 16, stack);
    while (!is_empty(stack)) {
        printf("%c", pop(stack));
    }
    printf("\
");
    free(stack->data);
    free(stack);
    return 0;
}

这段 C 代码实现了一个简单的栈结构,并使用递归函数 jinzhizhuanhua 将给定的十进制数转换为指定进制。在这个例子中,我们将 22543253 转换为十六进制。
请注意,本回答来自GPT-4
如果问题已经解决,请设置最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-6 21:13:34 | 显示全部楼层
Mike_python小 发表于 2023-10-6 21:12
None

球一个最佳答案谢谢啦!这对我非常重要!

《None》
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-14 14:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表