题目 1051: [编程入门]结构体之成绩统计2 摘要:兄弟们,大一大二落下的太多了,感觉现在一下子,要接触c,c++,java,python,c#,还有前端其中 c练的最多(但都是皮毛)c++ (今年暑假自学了,感觉和java好像,练了一部分题)java…… 文章列表 2021年09月16日 0 点赞 0 评论 560 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(c语言) 摘要:运用简单的方法,比较直观且清晰,但定义的变量有点的多#include<stdio.h>jint main(){int a1,b1,c1,d1,e1,sum;int a,b,c,d,e,num;num>…… 文章列表 2021年09月18日 0 点赞 0 评论 246 浏览 评分:9.9
循环双链表的插入和删除操作 摘要:```c #include #include #include typedef struct student { char name[20]; int score;…… 文章列表 2021年09月19日 0 点赞 0 评论 419 浏览 评分:9.9
精品文章 黑客入门系列一 劫持(Hook)库函数 摘要:一、前言: 相信很多学习计算机的同学,都有一个黑客梦,这次就给大家稍微展示一些“拙劣”的黑客技巧,仅限于linux环境。因为工作以后,90%的人都是在linux系统从事开发工作的。二、测试环境:…… 文章列表 2021年09月22日 0 点赞 0 评论 1041 浏览 评分:8.4
关于栈的操作 摘要:```c #include #include #define MaxSize 100 typedef int ElemType; typedef struct { ElemTyp…… 文章列表 2021年09月23日 0 点赞 0 评论 261 浏览 评分:0.0
顺序表实现队列 摘要:```c #include #include #define MaxSize 100 typedef int ElemType; typedef struct { ElemTyp…… 文章列表 2021年09月26日 0 点赞 0 评论 245 浏览 评分:8.0
顺序表实现循环队列 摘要:```c #include #include #define MaxSize 100 typedef int ElemType; typedef struct { ElemTyp…… 文章列表 2021年09月26日 0 点赞 0 评论 251 浏览 评分:0.0
链表实现队列 摘要:```c #include #include typedef int ElemType; typedef struct qnode { ElemType data; stru…… 文章列表 2021年09月26日 0 点赞 0 评论 440 浏览 评分:0.0
队列实际求解报数问题 摘要:《数据结构》p108 ```c #include #include typedef int ElemType; typedef struct qnode { ElemType d…… 文章列表 2021年09月26日 0 点赞 0 评论 239 浏览 评分:0.0
最大公因数与最小公倍数 摘要:求最大公约数和最小公倍数: 利用辗转相除法求出最大公约数,而得出两个数的最大公约数,把两数相乘再除以最大公约数就能求出最小公倍数。 最大公约数求法: 当c!=0是执行此代码: c=b%a; …… 文章列表 2021年09月27日 0 点赞 0 评论 198 浏览 评分:9.9