二级C语言--公约公倍 摘要:要注意输入的方式:即是一次输入俩个数据,还是一次输入一个数据,分俩次输入b=list(map(int,input().split()))if len(b)<2: q=int(input()) …… 文章列表 2022年03月02日 0 点赞 0 评论 184 浏览 评分:0.0
冒泡排序---- 摘要:#include <iostream>using namespace std;void maopao(int a[],int n){ for (int i = 1; i < n; ++i) { …… 文章列表 2022年03月04日 0 点赞 0 评论 157 浏览 评分:9.9
选择排序-------- 摘要:#include <iostream>using namespace std;void xuanze(int a[],int n){ for (int i = 0; i < n-1; ++i) …… 文章列表 2022年03月04日 0 点赞 0 评论 144 浏览 评分:0.0
算法学习资料推荐 摘要:> 今天这篇文章是针对刚学习算法的小白 希望小白会喜欢我推荐的这套课程 - Java 数据结构与算法【尚硅谷-韩顺平老师】  { …… 文章列表 2022年03月08日 0 点赞 0 评论 312 浏览 评分:0.0
1255能量项链记录 摘要:刚开始写忽视了好多细节比如一个点的左右在随时改变,没有认真考虑。然后以后能量项链学一学区间dp算法…… 文章列表 2022年03月09日 0 点赞 0 评论 214 浏览 评分:0.0
[编程入门]自定义函数之数字后移C++ 摘要:#include <iostream> using namespace std; void sort(int a[],int n) { int c[100]; for …… 文章列表 2022年03月09日 0 点赞 0 评论 135 浏览 评分:0.0
新手编程,原谅!!!!!!! 摘要:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" 你在一片黑暗中醒来,突然,一束光照了进来。"; cout<<"你非常疑惑…… 文章列表 2022年03月09日 0 点赞 0 评论 257 浏览 评分:9.9
贪吃蛇小游戏 摘要:#include <windows.h> #include <stdlib.h> #include <conio.h> #include <time.h> #include <…… 文章列表 2022年03月09日 0 点赞 0 评论 351 浏览 评分:8.4
贪吃蛇(流畅版) 摘要:#include#include#include#include#define U 1 #define D 2 #define L 3 #define R 4 //蛇的状态,U:上 ;D:下;L…… 文章列表 2022年03月11日 0 点赞 0 评论 480 浏览 评分:9.9