摘要:
1. 在虚拟机里面添加5块SATA虚拟硬盘,每个20G,三个数据盘,一个校验盘,一个spare盘。添加完之后重启虚拟机。 2. 查看系统磁盘信息 sudo fdisk -l 3. 为添加的虚拟硬盘创建分区 sudo fdisk /dev/sd[d-f] 按照指导,n:创建新的分区,p:创建主分区,p 阅读全文
摘要:
1. WSGI 1.1 wsgiref.simple_server server.py: application.py 没有获取到自定义的http头,那如何获取自定义http头???待续 2. Flask flask主要使用装饰器将URL和application联系起来,如@app.route('/ 阅读全文
摘要:
keystone配置 /etc/keystone/keystone.conf配置: /etc/apache2/apache2.conf里面添加 ServerName 127.0.0.1 /etc/apache2/sites-available/wsgi-keystone.conf : (改端口,免得 阅读全文
摘要:
问题描述 长100厘米的细长直杆子上有n只蚂蚁。它们的头有的朝左,有的朝右。 每只蚂蚁都只能沿着杆子向前爬,速度是1厘米/秒。 当两只蚂蚁碰面时,它们会同时掉头往相反的方向爬行。 这些蚂蚁中,有1只蚂蚁感冒了。并且在和其它蚂蚁碰面时,会把感冒传染给碰到的蚂蚁。 请你计算,当所有蚂蚁都爬离杆... 阅读全文
摘要:
数据结构书上的。。#include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */// ... 阅读全文
摘要:
(1) a,&a,和*aint main(int argc, char *argv[]) { int a = 10; int *c = &a; cout#include using namespace std;/* run this program using the console pauser ... 阅读全文
摘要:
就简单背包问题(背包一)和四染色问题简单的回溯问题可以有以下这个模型 int trying = 0; do { while( 满足条件,可以进栈 ) { 进栈 设置尝试的新值:简单的分有两种 1、如简单背包的:物品互斥,则trying=trying + 1; ... 阅读全文
摘要:
数据结构书上的。。。依旧回溯#include #include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop ... 阅读全文
摘要:
数据结构书上的背包问题,最基本的背包问题。简单回溯,数字模拟栈。#include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or in... 阅读全文