首先步入ACM的学习,不得不强烈推荐一套视频 https://space.bilibili.com/3071253#! 这位up主的视频很符合我这种 没学过c++,c语言数组还不很懂,hdoj按顺序刷的想骂人的菜鸡 首先基本输入输出格式 即1089-1096题 下面给出代码,原题请自己搜索 1089 ...
分类:
其他好文 时间:
2017-11-26 14:05:19
阅读次数:
125
#1.停止mysql数据库 /etc/init.d/mysqld stop #2.执行如下命令 mysqld_safe --user=mysql --skip-grant-tables --skip-networking & #3.使用root登录mysql数据库 mysql -u root mys ...
分类:
数据库 时间:
2017-11-22 21:47:19
阅读次数:
148
一、安装登陆1.安装并开启服务yuminstallmariadb-server.x86_64systemctlstartmariadb2.安全初始化)默认情况下,数据库的网络接口时打开的为了安全需要关闭此接口netstat-antple|grepmysql图示:网络接口vim/etc/my.cnf10skip-networking=1systemctlrestartmariadb.service图..
分类:
数据库 时间:
2017-11-21 20:51:56
阅读次数:
287
调试中遇到的困难主要在于building队列的维护。不能简单地将新增edge加入queue,需要对其方向进行处理。 ...
分类:
其他好文 时间:
2017-11-21 11:37:45
阅读次数:
174
#include #include using namespace std; #define N 100 int parent[N]; struct road{ int begin; int end; int value; }; bool cmp(road a, road b){ return a.... ...
分类:
其他好文 时间:
2017-11-20 19:04:08
阅读次数:
108
using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; using UnityEngine.Networking; public class DownLoad : ... ...
分类:
编程语言 时间:
2017-11-17 16:21:13
阅读次数:
253
前言 创建容器的时候报错WARNING: IPv4 forwarding is disabled. Networking will not work. 解决办法: 添加如下代码: 重启network服务 完成以后,删除错误的容器,再次创建新容器,就不再报错了。 ...
分类:
Web程序 时间:
2017-11-16 18:47:01
阅读次数:
120
VirtualBox 可以为每一个虚拟机分配8个网卡。每一个网卡的连接方式可以选为下列之一: Not attached Network Address Translation (NAT) Bridged networking Host-only networking Internal network ...
分类:
其他好文 时间:
2017-11-15 22:10:26
阅读次数:
195
1.1.1.1.Neutron服务安装(Networking)本章介绍如何使用提供商网络或自助服务网络选项安装和配置网络服务(Neutron)。OpenStackNetworking(Neutron)允许您创建并附加由其他OpenStack服务管理的接口设备到网络。可以实现插件以适应不同的网络设备和软件,为OpenStack架构和..
分类:
Web程序 时间:
2017-11-13 14:57:03
阅读次数:
186
OpenStack系统由分开安装的几个关键服务组成。这些服务可根据其他云需求一起工作,包括计算(Compute),身份(Identity),网络(Networking),镜像(Image),块存储(BlockStorage),对象存储(ObjectStorage),计量(Telemetry),编排(Orchestration)和数据库(Datab..
分类:
其他好文 时间:
2017-11-13 14:55:20
阅读次数:
155