码迷,mamicode.com
首页 >  
搜索关键字:free top    ( 26147个结果
【源码】C++坦克大战
如果需要其他题目,可以阅览大纲: 点我跳转 题目介绍 代码量:1450 你收到的所有文件 其中一个是devc++版本,也可以用visual stdio 运行。 源码效果展示 typedef struct //这里的出现次序指的是一个AI_tank变量中的次序,游戏共有四个AI_tank变量 { // ...
分类:编程语言   时间:2021-03-16 13:41:59    阅读次数:0
用链表解决约瑟夫环问题
#include <stdio.h>#include <stdlib.h>typedef struct node { int number; struct node * next;}person;person * initLink(int n) { int i = 0; person * head ...
分类:其他好文   时间:2021-03-15 11:31:33    阅读次数:0
new try
#home { margin: 0 auto; width: 65%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.5); padding: 30px; margin-top: 50px; ...
分类:其他好文   时间:2021-03-15 11:21:43    阅读次数:0
机器学习-识别手写数字0-9
1 import os 2 os.environ['TF_CPP_MIN_LOG_LEVEL']='2' # to hidden the messages from tensorflow 3 from tensorflow import keras 4 from tensorflow.keras i ...
分类:其他好文   时间:2021-03-15 10:35:44    阅读次数:0
PAT 2020年秋季 7-3 Left-View of Binary Tree (25 分)
The left-view of a binary tree is a list of nodes obtained by looking at the tree from left hand side and from top down. For example, given a tree sho ...
分类:其他好文   时间:2021-03-11 18:26:16    阅读次数:0
壁纸网站推荐
必应壁纸 应有壁纸 极简壁纸 美图集 Windows Spotlight Images Awesome Wallpapers Unsplash Gallery Pixabay Wallpaper Cave wallpapersCraft desktopography WallDevil ...
分类:Web程序   时间:2021-03-09 13:17:53    阅读次数:0
Linux上nginx的使用
linux上nginx位置/usr/local/nginx。 停止nginx ps -ef | grep nginx 找到nginx进程(会列出三个) kill -QUIT <进程号> 杀掉进程(上面中,找到root且是nginx的根进程号) 后台nginx启动 /usr/local/nginx/s ...
分类:系统相关   时间:2021-03-08 14:17:06    阅读次数:0
zookeeper集群搭建安装
hadoop大数据集群搭建过程中,需要使用到zookeeper进行主从管理和控制,那我们就安装一套集群环境 1、下载zookeeper 登录zookeeper.apache.org官网,找到Getting Started下边的Download。 进去之后我们选择一个版本,比如选择3.6.2,进去后选 ...
分类:其他好文   时间:2021-03-06 14:45:39    阅读次数:0
centos 7下的nginx设置开机自动启动
centos 7以上是用Systemd进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。关于Systemd的详情介绍在这里。 Systemd服务文件以 .service结尾,比如现在要建立n ...
分类:其他好文   时间:2021-03-06 14:24:34    阅读次数:0
SP3734 PERIODNI - Periodni 笛卡尔树 DP
题意: 戳这里 分析: 一看到是直方图的题目,我们可以联想到笛卡尔树 我们将列数作为 BST 的一维,将高度作为小根堆的一维,这样笛卡尔树上每一个节点都是一个矩形 我们考虑在矩形中选出 k 个合法点的方案数,显然等价于 \(C_{wid}^kC_{hig}^kk!\) ,表示选出 k 种高度和下标并 ...
分类:其他好文   时间:2021-03-05 13:29:19    阅读次数:0
26147条   上一页 1 ... 20 21 22 23 24 ... 2615 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!