自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Homework 6

Homework 6 1、使用类图,分别对 Asg_RH 文档中 Make Reservation 用例以及 Payment 用例开展领域建模。然后,根据上述模型,给出建议的数据表以及主要字段,特别是主键和外键 注意事项: 对象必须是名词、特别是技术名词、报表、描述类的处理; 关联必须有多重性、部分有名称与导航方向 属性要注意计算字段 数据建模,为了简化描述仅需要给出表清单,例如: Ho...

2019-06-16 12:20:59 230

原创 HOMEWORK5

使用UMLet建模 根据定律管建模文档 绘制用例图模型(到子用例) 给出make reservation用例的活动图 根据课程练习“投递员使用投递箱给收件人快递包裹”的业务场景 分别用多泳道图建模三个场景的业务过程 场景1:x科技公司发明了投递柜,它们自建了投递柜以及远程控制系统。注册的投递员在推广期免费使用投递柜。由于缺乏资源,仅能使用y移动平台向客户发送短信通知...

2019-05-26 00:21:42 209

原创 HOMEWORK4

用例建模 1. 简单题 ① 用例的概念 是软件工程或系统工程中对系统如何反应外界请求的描述,是一种通过用户的使用场景来获取需求的技术。 是描述参与者使用系统的一组成功和失败场景。 ② 用例和场景的关系? 什么是主场景或 happy path? 每个用例提供了一个或多个场景,该场景说明了系统是如何和最终用户或其它系统互动,也就是谁可以用系统做什么,从而获得一个明确的业务目标。 主场景或happy p...

2019-05-21 22:08:21 311

原创 HOMEWORK 3

作业 1、简单题 简述瀑布模型、增量模型、螺旋模型(含原型方法),并分析优缺点(从项目特点、风险特征、人力资源利用角度思考) 瀑布模型 瀑布模型将软件生命周期划分为制定计划(P)、需求分析(A)、软件设计(D)、程序编写(C)、软件测试(T)和运行维护(M)等六个基本活动,并且规定了它们自上而下、相互衔接的固定次序。 优点: 项目特点角度:可以保证整个软件产品较高的质量,保证缺陷能够提前...

2019-04-16 20:46:03 317

原创 HOMEWORK 2

1、简答题 用简短的语言给出对分析、设计的理解。 分析:强调对问题和需求的调查,而不是解决方案。 设计:强调满足需求的概念解决方案(在软件和硬件中),而不是它的实现。 用一句话描述面向对象的分析与设计的优势。 易维护、易复用、易扩展,由于面向对象有封装、继承、多态性的特性,可以设计出低耦合的系统,使系统更加灵活、更加易于维护。 简述 UML(统一建模语言)的作用。考试考哪些图? UML是标准的图...

2019-04-16 12:41:47 196

原创 Homework1

简答题 1. 软件工程的定义 软件工程是将系统化的、规范的、可度量的方法应用于软件的开发、运行和维护,即将工程化方法应用于软件。 2. 解释导致 software crisis 本质原因、表现,述说克服软件危机的方法 ① 导致software crisis的本质原因:软件的大量需求与软件生产力效率之间的矛盾;软件系统的复杂性与软件开发方法之间的矛盾。 ② 表现: - 项目运行超出预算。项目运行超过...

2019-03-16 13:38:54 491

原创 Week13

题目描述 A chess knight can move as indicated in the chess diagram below: This time, we place our chess knight on any numbered key of a phone pad (indicated above), and the knight makes N-1 hops. Each ...

2018-12-02 23:21:09 145

原创 Week12

问题描述 Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if s can be segmented into a space-separated sequence of one or more dictionary words. Note: ...

2018-11-25 19:30:48 145

原创 Week11

问题描述 We have two types of tiles: a 2x1 domino shape, and an “L” tromino shape. These shapes may be rotated. XX <- domino XX <- "L" tromino X Given N, how many ways are there to tile a 2 x N ...

2018-11-18 20:31:45 174

原创 Week10

问题描述 We have two integer sequences A and Bof the same non-zero length. We are allowed to swap elements A[i]and B[i]. Note that both elements are in the same index position in their respective sequenc...

2018-11-11 22:38:18 165

原创 Week9

题目描述 Given an unsorted array of integers, find the length of longest increasing subsequence. Example: Input: [10,9,2,5,3,7,101,18] Output: 4 Explanation: The longest increasing subsequence is [2,3,7,...

2018-11-04 21:48:31 218

原创 Week8

1. Edit Distance 问题描述 Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2. You have the following 3 operations permitted on a word: Insert a char...

2018-10-28 20:45:08 324

原创 Week7

问题描述 Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k <= m + n from digits of the two. The relative order of the digits from the sa...

2018-10-21 21:35:00 204

原创 Week6

问题描述 A sequence X_1, X_2, ..., X_n is fibonacci-like if: n >= 3 X_i + X_{i+1} = X_{i+2} for all i + 2 <= n Given a strictly increasing array A of positive integers forming a sequence, find the...

2018-10-14 21:09:10 306

原创 Week5

1. Burst Balloons 问题描述 Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by array nums. You are asked to burst all the balloons. If the you burst balloon...

2018-10-07 21:08:44 232

原创 Week4

Redundant Connection 问题描述 In this problem, a tree is an undirected graph that is connected and has no cycles. The given input is a graph that started as a tree with N nodes (with distinct values 1, 2,...

2018-09-30 21:35:09 161

原创 Week3

题目描述 Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string. Example 1: Input: num1 = "2", num2 = "3" Output: "6" Exam..

2018-09-23 11:02:56 207

空空如也

空空如也

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

TA关注的人

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