自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(25)
  • 收藏
  • 关注

原创 【系统分析与设计】9

1.  使用ECB实现 make reservation 用例的详细设计(包含用例简介,顺序图,类图)用例简介:根据以上用例,可以识别得到以下类:Boundary/UI 类:1. SearchHotelPage: 搜索宾馆界面2. MakeReservationPage: 预定宾馆界面3. BasketPage: 购物车界面4. PayPage: 支付界面Controller 类:Controll...

2018-07-01 18:45:23 171

原创 【系统分析与设计】8

描述软件架构与框架之间的区别与联系以你的项目为案例绘制三层架构模型图,细致到分区结合你程序的结构,从程序员角度说明三层架构给开发者带来的便利研究 VUE 与 Flux 状态管理的异同...

2018-06-08 22:29:32 234

原创 【系统分析与设计】7

建模要求包括(用例图、XX业务或用例的活动图、XX领域模型、XX对象的状态图、XX场景的系统顺序图与操作协议)用例图活动图领域模型状态图场景的系统顺序图...

2018-05-13 23:30:48 140

原创 【系统分析与设计】6

1)使用 UML State Model建模对象: 参考 Asg_RH 文档, 对 Reservation/Order 对象建模。 建模要求: 参考练习不能提供足够信息帮助你对订单对象建模,请参考现在 定旅馆 的旅游网站,尽可能分析围绕订单发生的各种情况,直到订单通过销售事件(柜台销售)结束订单。 2)研究淘宝退货流程活动图,对退货业务对象状态建模 ...

2018-05-06 23:12:44 157

原创 【系统分析与设计】5

领域建模 a. 阅读 Asg_RH 文档,按用例构建领域模型。 按 Task2 要求,请使用工具 UMLet,截图格式务必是 png 并控制尺寸 说明:请不要受 PCMEF 层次结构影响。你需要识别实体(E)和 中介实体(M,也称状态实体) 在单页面应用(如 vue)中,E 一般与数据库构建有关, M 一般与 store 模式 有关 在 java web 应用中,

2018-04-29 23:11:02 125

原创 【系统设计与分析】4

1、 用例建模 a. 阅读 Asg_RH 文档,绘制用例图。 按 Task1 要求,请使用工具 UMLet,截图格式务必是 png 并控制尺寸         b. 选择你熟悉的定旅馆在线服务系统(或移动 APP),如绘制用例图。并满足以下要求: - 对比 Asg_RH 用例图,请用色彩标注出创新用例或子用例 - 尽可能识别外部系统,并用色彩标注新的外

2018-04-22 23:27:07 359

原创 【系分】微信小程序开发入门(一)

开发准备微信小程序官方教程下载开发工具 正式开发1.   添加项目,输入AppID,选择项目目录创建新文件夹,若文件夹为空,系统就会自动创建整个项目架构【注意:记得勾选quickstart项目】 2.   自动创建的项目有以下架构目录:菜单栏,页面效果显示,代码架构目录,代码栏着重讲解代码架构目录:app.js、app.json、app.wxss app.js是小程序的脚本代码。我们可以在这个文件...

2018-04-15 22:25:52 205

原创 【系统分析与设计】2

1 简答题简述瀑布模型、增量模型、螺旋模型(含原型方法)的优缺点。·   瀑布模型的优点:1. 可强迫开发人员采用规范的方法;2. 严格规定了每个阶段必须提交的文档;3. 要求每个阶段交出的所有产品都必须经过质量保证小组的仔细验证。 ·   瀑布模型的缺点:1. 在软件开发初期,指明用户全部需求是困难的;2. 需求确定后,经过一段时间才得到软件最初版本;3. 完全依赖规格说明,导致不能满足用户需求...

2018-03-22 15:20:51 154

原创 【系统分析与设计】1

1简单题1.1  软件工程的定义From Wiki: Software engineering is “(1) the application of a systematic,disciplined, quantifiable approach to the development, operation, andmaintenance of software, that is, the appli...

2018-03-15 20:30:13 273

原创 Algorithms(十六)Permutations II

题目: 47. Permutations II Given a collection of numbers that might contain duplicates, return all possible unique permutations. For example, [1,1,2] have the following unique permutations: [

2018-01-13 15:58:41 231

原创 Algorithms(十五)Permutations

题目: 46. Permutations Given a collection of distinct numbers, return all possible permutations. For example, [1,2,3] have the following permutations: [ [1,2,3], [1,3,2], [2,1,3], [2,

2018-01-13 14:47:22 164

原创 Algorithms(十四)Pow(x, n)

题目: 50. Pow(x, n) Implement pow(x, n). Example 1: Input: 2.00000, 10 Output: 1024.00000 Example 2: Input: 2.10000, 3 Output: 9.26100 代码: class Solution { public: double myPow(d

2018-01-13 01:29:52 240

原创 Algorithms(十三)Kth Smallest Element in a BST

题目: 230. Kth Smallest Element in a BST Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Note: You may assume k is always valid, 1 ≤ k ≤ BST'

2018-01-12 21:47:21 178

原创 Algorithms(十二)Best Time to Buy and Sell Stock III

题目: 123. Best Time to Buy and Sell Stock III Say you have an array for which the ith element is the price of a given stock on dayi. Design an algorithm to find the maximum profit. You may com

2018-01-12 21:35:56 162

原创 Algorithms(十一)Unique Paths II

题目: 63. Unique Paths II Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How many unique paths would there be? An obstacle and empty space is marked as 1

2018-01-12 19:41:43 162

原创 Algorithms(十)Unique Paths

题目: 62. Unique Paths A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any point in time. The ro

2018-01-12 15:48:25 148

原创 Algorithms(九)Jump Game II

题目: 45. Jump Game II Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at th

2018-01-12 02:12:24 121

原创 Algorithms(八)Jump Game

题目: 55. Jump Game Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that

2018-01-12 01:58:38 160

原创 Algorithms(七)Single Number

题目: 136. Single Number Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you

2018-01-05 15:39:33 175

原创 Algorithms(六)Best Time to Buy and Sell Stock II

题目: 122. Best Time to Buy and Sell Stock II Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may comp

2017-12-29 00:17:57 153

原创 Algorithms(五)Best Time to Buy and Sell Stock

题目: 121. Best Time to Buy and Sell Stock Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transactio

2017-12-27 21:51:00 160

原创 Algorithms(四)Employee Importance

题目: Employee Importance You are given a data structure of employee information, which includes the employee's unique id, his importance value and his direct subordinates' id. For example, e

2017-10-01 17:30:08 154

原创 Algorithms(三)Evaluate Division

题目: Evaluate Division Equations are given in the format A / B = k, where A and B are variables represented as strings, and k is a real number (floating point number). Given some queries, retu

2017-09-24 14:24:23 248

原创 Algorithms(二)Maximum Subarray

题目: Maximum Subarray Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [-2,1,-3,4,-1,2,1,-5,4], the contig

2017-09-17 14:35:15 193

原创 Algorithms(一)Two Sum

题目: Two Sum Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may n

2017-09-10 17:58:10 291

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除