精品文章 每日算法题:反转链表 摘要:描述(来自牛客):给定一个单链表的头结点pHead(该头节点是有值的,比如在下图,它的val是1),长度为n,反转该链表后,返回新链表的表头。数据范围:0≤n≤1000要求:空间复杂度 O(1) ,时…… 文章列表 2022年03月12日 0 点赞 0 评论 431 浏览 评分:9.9
扫雷( window原版规则) 摘要:#include<bits/stdc++.h>#include<windows.h>using namespace std;long long int c,dev,m,k,cnt,d,e,jie=10…… 文章列表 2022年03月11日 0 点赞 0 评论 395 浏览 评分:9.9
2048上下左右 摘要:#include <iostream> #include <windows.h> #include <ctime> using namespace std; int const ROW =…… 文章列表 2022年03月11日 0 点赞 0 评论 489 浏览 评分:9.9
打怪鬼脸 做鬼脸 摘要:#include<bits/stdc++.h>#include<conio.h>#include<windows.h>using namespace std;double shanghai[20]={…… 文章列表 2022年03月11日 0 点赞 1 评论 186 浏览 评分:9.9
猜拳(youVScomputer) 摘要:#include<iostream>#include<cstdlib>#include<ctime>using namespace std;int main(){ int c,p;//定义电脑(c),…… 文章列表 2022年03月11日 0 点赞 0 评论 161 浏览 评分:9.9
贪吃蛇(流畅版) 摘要:#include#include#include#include#define U 1 #define D 2 #define L 3 #define R 4 //蛇的状态,U:上 ;D:下;L…… 文章列表 2022年03月11日 0 点赞 0 评论 396 浏览 评分:9.9
贪吃蛇小游戏 摘要:#include <windows.h> #include <stdlib.h> #include <conio.h> #include <time.h> #include <…… 文章列表 2022年03月09日 0 点赞 0 评论 281 浏览 评分:8.4
新手编程,原谅!!!!!!! 摘要:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" 你在一片黑暗中醒来,突然,一束光照了进来。"; cout<<"你非常疑惑…… 文章列表 2022年03月09日 0 点赞 0 评论 191 浏览 评分:9.9
[编程入门]自定义函数之数字后移C++ 摘要:#include <iostream> using namespace std; void sort(int a[],int n) { int c[100]; for …… 文章列表 2022年03月09日 0 点赞 0 评论 79 浏览 评分:0.0
1255能量项链记录 摘要:刚开始写忽视了好多细节比如一个点的左右在随时改变,没有认真考虑。然后以后能量项链学一学区间dp算法…… 文章列表 2022年03月09日 0 点赞 0 评论 162 浏览 评分:0.0