// Lexical_Analysis.cpp : 定义控制台应用程序的入口点。 // #include "stdio.h" #include "stdlib.h" #include "string.h" #include "iostream" using namespace std; //词法分析... ...
分类:
其他好文 时间:
2018-11-03 14:01:40
阅读次数:
146
4.4.1切片 4.4.2 遍历切片 4.4.3 复制列表 My favorite foods are: ['pizza', 'falafel', 'carrot cake'] My friend's favorite foods are: ['pizza', 'falafel', 'carrot ...
分类:
其他好文 时间:
2018-10-25 14:25:11
阅读次数:
153
Genealogical tree Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8003 Accepted: 5184 Special Judge Description The system of Martians' blo ...
分类:
编程语言 时间:
2018-10-22 16:44:54
阅读次数:
167
#include <iostream> #include <sstream> std::stringstream ss; ss<<"dfsdf"<<"sdfasdf"; std::string str(ss.str()); const char *arr = str.data(); ...
分类:
编程语言 时间:
2018-10-19 02:06:40
阅读次数:
121
Java 类的继承规则 类的继承教学视频 子类继承父类的公有属性和方法 子类可以增加属性和方法 子类可以覆盖父类的属性和方法 子类可以重载父类的方法 子类可以初始化父类对象 1 package com.org.cqust.ClassGroup; 2 3 public class Person { 4 ...
分类:
编程语言 时间:
2018-10-19 00:18:36
阅读次数:
142
属性: background-position: left top || left bottom || right top || right bottom || center center || 像素值 || 百分比 实例: 代码: 1.设置background-position:left top ...
分类:
Web程序 时间:
2018-10-15 16:28:43
阅读次数:
219
来自Nginx公司的工程师介绍什么Ngnix,怎么安装nginx以及nginx+,主要的配置文件,命令和文件夹,也谈到了基本配置和高级配置选项,包括大量的配置选项和相关原理介绍,可以作为网站运维人员入门的参考,最后也谈到了日志和监控文件管理。 篇幅过长,原文链接 "https://www.slide ...
分类:
其他好文 时间:
2018-10-13 11:43:38
阅读次数:
137
函数模板特化 函数模板特化: 特化的声明必须与对应的模板相匹配,当调用cmp函数时,传给他两个const string类型的参数,编译器调用特化版本,特化函数参数固定为const string类型,当调用其他类型(包括string)时,调用泛化版本 1.声明特化模板 函数特化模板可以声明而无需定义 ...
分类:
其他好文 时间:
2018-10-13 11:36:35
阅读次数:
214
一、概述1、Oracle12c可插拔数据库体系结构Oracle12c中引入了一个新功能就是OracleMultitenant,这个功能可以在多租户容器数据库中,创建并维护许多个可插拔数据库。OracleMultitenant是Oracle企业版中需要额外付费的组件。然而,在所有Oracle版本中都可以在一个可插拔数据库中免费使用它。多租户容器数据库(CDB)是指能够容纳一个或者多个可插拔数据库的数
分类:
数据库 时间:
2018-10-10 21:46:49
阅读次数:
170
1.某神犇Blog 学了三遍的 欧拉函数φ--DEADFISH7 2.我要做一些补充o(* ̄▽ ̄*)o $φ(1)=1$; 公式有两种形式,一种有太多除法,实际可能会慢些。通用 对于任意$n$>1,1~$n$中与$n$互质的数之和等于$n*φ(n)/2$。 是积性函数。 $sigma(d|n) φ( ...
分类:
其他好文 时间:
2018-10-09 00:32:28
阅读次数:
187