一、项目设计 1、项目的生命周期: 1.需求分析 2.项目设计 3.分任务开发程序 4.项目测试 5.上线运行 6.维护更新 2、经典的三层结构 界面层与数据层不应该直接通讯 二、购物车系统 1、文件 2、系统入口 I.所需信息 II.系统入口 3、账户操作 I.所需信息 II.所需方法 III.注 ...
分类:
其他好文 时间:
2018-12-12 17:35:03
阅读次数:
155
The thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root, each hou ...
分类:
其他好文 时间:
2018-12-11 21:48:39
阅读次数:
217
Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements ...
分类:
其他好文 时间:
2018-12-09 16:36:54
阅读次数:
140
技术可行性: 1.系统环境介绍: i. 软件寿命:三年 ii. 硬件条件:客户端为pc机 iii. 运行环境:Windows 7 iv. 数据库: SQL Server 2012 2 . 系统简要描述: 这是一个基于计算机网络、数据库和先进的开发平台的管理系统,使用现有技术已较为成熟的B/S模式。员 ...
分类:
其他好文 时间:
2018-12-04 01:02:42
阅读次数:
389
一.结构型设计模式 门面模式与单例模式,工厂模式不同,它是一种结构型模式。 结构型模式描述如何将对象和类组合成更大的结构 结构型模式是一种能够简化设计工作的模式,它能找出更简单的方法来认识或表示实体之间的关系。 结构型模式是类和对象模式的综合体。类模式通过继承来描述抽象,从而提供更有用的程序接口,而 ...
分类:
编程语言 时间:
2018-11-29 11:02:17
阅读次数:
215
557. Reverse Words in a String III Easy 50156 557. Reverse Words in a String III Easy 50156 Easy Given a string, you need to reverse the order of char ...
分类:
其他好文 时间:
2018-11-28 00:30:06
阅读次数:
158
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1028 整数划分,每个数可以用无限次; 所以构造 f(x) = (1+x+x2+x3+...)(1+x2+x4+...)(1+x3+x6+...)...(1+xn) 乘起来后的 xn 的系数就是方案数; 用两 ...
分类:
其他好文 时间:
2018-11-27 12:32:33
阅读次数:
173
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1028 就是可以用任意个1、2、3、...,所以式子写出来就是这样:(1+x+x^2+...)(1+x^2+x^4+...)(1+x^3+x^6+...)...(1+x^n+x^(2*n)+...)... 因 ...
分类:
其他好文 时间:
2018-11-27 12:26:11
阅读次数:
199
老是想着化简,实际上O(n^3)就行了…… 写成生成函数是\\( \prod_{i=1}^{n}(1+x^i+2^{2i}+...+x^{ \left \lfloor \frac{n}{i} \right \rfloor }) \\),暴力乘即可 cpp include include using ...
分类:
其他好文 时间:
2018-11-26 00:14:29
阅读次数:
96
英雄无敌HoMM3:死亡阴影SOD 英雄无敌3之死亡阴影(Heroes of Might and Magic III: Shadow of Death,简记为HoMM III: SOD)发行于1999年,网上随处可见资源和资料,“游戏之家”的帮助是最直观和详尽的。值得一提的是,贴吧“总上所述”将的“ ...
分类:
其他好文 时间:
2018-11-25 11:41:46
阅读次数:
963