编写题解 1680: 数据结构-八进制数(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define INITSIZE 10#define INCREM 5typede…… 题解列表 2025年03月30日 0 点赞 0 评论 14 浏览 评分:0.0
c语言栈八进制转换(记录代码) 摘要:#include#include#define maxsize 100//定义线性栈 typedef struct{ int data[maxsize]; int top;…… 题解列表 2025年03月14日 1 点赞 0 评论 77 浏览 评分:0.0
十-八进制转换(动态栈、数组实现,作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct{ int *data…… 题解列表 2025年02月16日 0 点赞 0 评论 86 浏览 评分:0.0
十-八进制转换(静态栈、数组实现,作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define maxsize 100typedef struct{&nbs…… 题解列表 2025年02月16日 0 点赞 0 评论 80 浏览 评分:0.0
十进制转八进制数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct{ int data[100]; int top;}Lnod…… 题解列表 2024年11月25日 0 点赞 0 评论 155 浏览 评分:9.9
数据结构用栈实现进制转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <malloc.h>#define MAXSIZE 100typedef struct{ int data[MAXS…… 题解列表 2024年11月07日 0 点赞 0 评论 91 浏览 评分:0.0
1680: 数据结构-八进制数 题解 摘要:```c #include #include typedef struct { int date[101]; int top; }stack;//栈 int isempt…… 题解列表 2024年08月07日 0 点赞 0 评论 146 浏览 评分:0.0
数据结构改进制 摘要:解题思路:注意事项:注意输入x的方式参考代码:#include<stdio.h>#include<iostream>#include<string.h>#include<stack>using nam…… 题解列表 2024年05月01日 0 点赞 0 评论 105 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) oct_num = oct(n) print(oct_…… 题解列表 2024年03月16日 0 点赞 0 评论 159 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 (谁的代码有我短,为了通过) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; while (scanf ("%d",&n)!=EOF){ prin…… 题解列表 2023年10月09日 0 点赞 0 评论 363 浏览 评分:9.9