2016年4月8日

摘要: Knowledge Dependence:阅读文本前,你需要了解基本的关系型数据库与非关系型(NoSQL)数据库的概念和区别,以及 MongoDB(Mongoose)的简单实践。 ​ 这两三年来,伴随着大数据(Big Data)的空前火热,无论是在工程界还是科研界,非关系型数据库(NoSQL)都已经 阅读全文

posted @ 2016-04-08 23:35 Maples7 阅读(741) 评论(0) 推荐(0) 编辑

摘要: Node.js 以其单线程异步非阻塞的特点,越来越被广大的 Web 后端开发者所喜爱,尤其是在构建高并发的 Web 服务时。而 Express 是 Node.js 开发中最受欢迎的 Web 框架之一。 本文分享一个作者自己用 Express4 写的供学习用的留言板应用。 所实现了的功能: 登录、注册 阅读全文

posted @ 2016-04-08 23:23 Maples7 阅读(495) 评论(0) 推荐(0) 编辑

2016年2月25日

摘要: 一、题目描述 请用 python3 编写一个计算器的控制台程序,支持加减乘除、乘方、括号、小数点,运算符优先级为括号>乘方>乘除>加减,同级别运算按照从左向右的顺序计算。 二、输入描述 数字包括"0123456789",小数点为".",运算符包括:加("+")、减("-")、乘("*")、除("/" 阅读全文

posted @ 2016-02-25 11:27 Maples7 阅读(12325) 评论(5) 推荐(2) 编辑

2015年9月1日

摘要: Sort ColorsGiven an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the or... 阅读全文

posted @ 2015-09-01 13:29 Maples7 阅读(412) 评论(0) 推荐(0) 编辑

2015年8月18日

摘要: Single Number I :Given an array of integers, every element appears twice except for one. Find that single one. Note:Your algorithm should have a linea... 阅读全文

posted @ 2015-08-18 16:32 Maples7 阅读(1636) 评论(0) 推荐(0) 编辑

2015年8月17日

摘要: Gray CodeThe gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the tot... 阅读全文

posted @ 2015-08-17 14:46 Maples7 阅读(281) 评论(0) 推荐(0) 编辑

2015年8月16日

摘要: Add DigitsGiven a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is... 阅读全文

posted @ 2015-08-16 14:33 Maples7 阅读(773) 评论(0) 推荐(0) 编辑

摘要: Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.首先学习一下罗马数字的规则:羅馬數字共有7個,即I(1)... 阅读全文

posted @ 2015-08-16 13:39 Maples7 阅读(432) 评论(0) 推荐(1) 编辑

2015年8月14日

摘要: 题目描述给定一个数组a[0,...,n-1],求其最大连续子数组(长度>=1)和输入描述第一行一个整数n(1 2 using namespace std; 3 4 int main() 5 { 6 int n, num; 7 long sum, max; 8 cin >> ... 阅读全文

posted @ 2015-08-14 21:12 Maples7 阅读(1291) 评论(0) 推荐(0) 编辑

2015年8月12日

摘要: Product of Array Except SelfGiven an array ofnintegers wheren> 1,nums, return an arrayoutputsuch thatoutput[i]is equal to the product of all the eleme... 阅读全文

posted @ 2015-08-12 22:41 Maples7 阅读(320) 评论(0) 推荐(0) 编辑

2015年6月16日

摘要: 浮点数输出(100/100 分数)题目描述编写一个程序,输入一个浮点数和输出格式要求,按照格式要求将该浮点数输出。给定非负整数m和n,表示输出的浮点数小数点前的宽度为m,若宽度不够则在前面补0,小数点后的宽度为n,若宽度不够则在后面补0(补充说明:当n=0时,只需输出整数部分,当m,n都为0时,则输... 阅读全文

posted @ 2015-06-16 23:22 Maples7 阅读(2380) 评论(2) 推荐(0) 编辑

2015年5月21日

摘要: C8-3 三角形还是长方形?(100.0/100 points)题目描述在多态概念中,基类的指针既可以指向基类的对象,又可以指向派生类的对象。我们可以使用dynamic_cast类型转换操作符来判断当前指针(必须是多态类型)是否能够转换成为某个目的类型的指针。同学们先查找dynamic_cast的使... 阅读全文

posted @ 2015-05-21 20:52 Maples7 阅读(1334) 评论(0) 推荐(0) 编辑

摘要: C8-1 复数加减乘除(100.0/100.0 points)题目描述求两个复数的加减乘除。输入描述第一行两个double类型数,表示第一个复数的实部虚部第二行两个double类型数,表示第二个复数的实部虚部输出描述输出依次计算两个复数的加减乘除,一行一个结果输出复数先输出实部,空格,然后是虚部,样... 阅读全文

posted @ 2015-05-21 20:24 Maples7 阅读(4221) 评论(0) 推荐(0) 编辑

摘要: 我想,每个人一开始遇到这个问题,都会觉得挺简单的。但真正实施的时候,可能就会觉得还是有点坑的。毕竟对于C/C++这样成熟而使用广泛的语言而言,对于这个简单的问题竟然没有一个简洁有力甚至一行代码的解决方案,依然是让人觉得挺震惊的。在 C/C++ 中,由于整数读取通常是会忽略空格、制表符、换行符等等的,... 阅读全文

posted @ 2015-05-21 13:02 Maples7 阅读(6509) 评论(1) 推荐(0) 编辑

2015年5月20日

摘要: 八皇后(1.0/1.0 points)题目描述8X8的国际象棋棋盘上被挖了一些洞,这些洞不能放棋子,求八皇后问题的摆放方案,输出一种方案即可输入格式棋盘用.表示正常格子,用#表示被挖掉的洞,一共8行8列输出格式输出从上到下的每一行的皇后所在列号(1-8)注意:只输出列号,只输出列号,最后的输出应该只... 阅读全文

posted @ 2015-05-20 10:32 Maples7 阅读(583) 评论(0) 推荐(0) 编辑