c语言栈八进制转换(记录代码) 摘要:#include#include#define maxsize 100//定义线性栈 typedef struct{ int data[maxsize]; int top;…… 题解列表 2025年03月14日 1 点赞 0 评论 111 浏览 评分:0.0
十-八进制转换(动态栈、数组实现,作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct{ int *data…… 题解列表 2025年02月16日 0 点赞 0 评论 111 浏览 评分:0.0
十-八进制转换(静态栈、数组实现,作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define maxsize 100typedef struct{&nbs…… 题解列表 2025年02月16日 0 点赞 0 评论 101 浏览 评分:0.0
十进制转八进制数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct{ int data[100]; int top;}Lnod…… 题解列表 2024年11月25日 0 点赞 0 评论 179 浏览 评分:9.9
数据结构用栈实现进制转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <malloc.h>#define MAXSIZE 100typedef struct{ int data[MAXS…… 题解列表 2024年11月07日 0 点赞 0 评论 101 浏览 评分:0.0
1680: 数据结构-八进制数 题解 摘要:```c #include #include typedef struct { int date[101]; int top; }stack;//栈 int isempt…… 题解列表 2024年08月07日 0 点赞 0 评论 279 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 (谁的代码有我短,为了通过) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; while (scanf ("%d",&n)!=EOF){ prin…… 题解列表 2023年10月09日 0 点赞 0 评论 376 浏览 评分:9.9
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int sum=0; int n,a[100],i=0,k=1,l=0; while (s…… 题解列表 2023年10月09日 1 点赞 0 评论 174 浏览 评分:0.0
C语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct linkednode{ int data; struct …… 题解列表 2023年09月13日 0 点赞 0 评论 114 浏览 评分:0.0
用栈实现八进制转换 摘要:```c #include #include typedef struct Stack { int data[100]; int top; }*Stack,stack; //入栈 …… 题解列表 2023年03月22日 0 点赞 0 评论 467 浏览 评分:9.9