自定义博客皮肤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)
  • 收藏
  • 关注

原创 系统分析与设计hw7

系统分析与设计hw7XX 建模练习 要求:练习文档编写选择一个你喜欢的 移动App 或 其中某业务参考 Asg_RH 文档格式 编写软件描述文档要包含一个业务的完整过程建模要求包括(用例图、XX业务或用例的活动图、XX领域模型、XX对象的状态图、XX场景的系统顺序图与操作协议)建模者答案:收集建模者答案URL建模者不能是本团队成员(至少有一个答案)给建模者给出评价...

2018-07-11 22:47:45 174

原创 系统分析与设计hw6

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

2018-07-11 22:41:05 159

原创 系统分析与设计hw5

系统分析与设计hw5

2018-07-11 22:38:28 144

原创 系统分析与设计hw9

系统分析与设计作业九

2018-06-30 23:42:27 197

原创 系统设计与分析hw8

系统设计与分析hw7描述软件架构与框架之间的区别与联系区别:架构是把系统分解为一些部件,描述这些部件的职责及它们之间的协作行为;而框架是特定语言和技术的架构应用解决方案。框架是具体语言和技术相关的,是集成了你的代码和多种第三方解决方案的工具,相反,架构则和特定语言无关,只是特定领域的解决方案。联系:框架是一种或多种架构的组合的实现,架构决策往往会体现在框架之中。以你的项目为案例...

2018-06-03 20:44:53 197

原创 系统设计与分析hw4

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

2018-04-22 23:55:37 176

原创 系统分析与设计hw3

系统分析与设计hw3这几周学习了一下javascript,以学习笔记作为技术报告:JavaScript学习笔记1.数据类型和变量数据类型:Number、字符串、布尔值变量声明使用var,因为js是动态语言比较运算符:===的使用,此运算符不会做自动类型转换,而==则会。一般用===;NaN和所有值比较都不相等,包括它自己。唯一判断方法为isNaN;浮点数之间的相等比较只能用Math.abs(1/3-

2018-04-15 23:54:12 229

原创 系统设计与分析hw2

系统设计与分析hw2

2018-03-22 21:44:03 186

原创 系统分析与设计hw1

系统分析与设计hw1

2018-03-15 23:12:12 263

原创 Leecode Week16: Search for a Range

Week16: Search for a RangeDifficulty:Medium1.ProblemGiven an array of integers sorted in ascending order, find the starting and ending position of a given target value.Your algorithm’s runtime complexi

2018-01-05 16:51:38 134

原创 Leecode Week15: Search in Rotated Sorted Array

Week 15: Search in Rotated Sorted ArrayDifficulty:Medium1.ProblemSuppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7

2018-01-05 11:34:39 152

原创 Leecode Week14: Divide Two Integers

Week14: Divide Two IntegersDifficulty:Medium1.ProblemDivide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT.2.Algorithm 1.首先判断div

2018-01-04 20:22:53 226

原创 Leecode Week13: Swap Nodes in Pairs

Week13: Swap Nodes in PairsDifficulty:Medium1.ProblemGiven a linked list, swap every two adjacent nodes and return its head.For example, Given 1->2->3->4, you should return the list as 2->

2018-01-04 17:12:11 138

原创 Leecode Week12: Generate Parentheses

Leecode

2018-01-04 16:21:02 229

原创 Leecode Week11: Remove Nth Node From End of List

Leecode

2018-01-04 12:46:13 204

原创 Leecode Week10: 4Sum

Leecode

2018-01-04 12:42:03 185

原创 Leecode Week9: Letter Combinations of a Phone Number

Week9: Letter Combinations of a Phone NumberDifficulty:Medium1.ProblemGiven a digit string, return all possible letter combinations that the number could represent.A mapping of digit to lett

2018-01-04 01:42:30 143

原创 Leecode Week8: 3Sum Closest

Week8: 3Sum ClosestDifficulty:Medium1.ProblemGiven an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three intege

2018-01-04 00:29:23 148

原创 Leecode Week7: 3Sum

Week7: 3SumDifficulty:Medium1.ProblemGiven an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.

2018-01-04 00:02:42 171

原创 Leecode Week6: Container With Most Water

Week6: Container With Most WaterDifficulty:Medium1.ProblemGiven n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that

2018-01-03 20:25:47 157

原创 Leecode Week5: ZigZag Conversion

Week5: ZigZag ConversionDifficulty:Medium1.QuestionThe string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fi

2018-01-03 19:23:22 148

原创 Leecode Week4: Longest Palindromic Substring

Week4:Longest Palindromic SubstringDifficulty:Medium1.QuestionGiven a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example: In

2018-01-03 17:13:57 143

原创 Leecode Week3: Longest Substring Without Repeating Characters

Week3:Longest Substring Without Repeating CharactersDifficulty:Medium1.QuestionGiven a string, find the length of the longest substring without repeating characters. Examples: Given “ab

2018-01-03 15:37:16 143

原创 Leecode Week2: Add Two Numbers

Week2:Add Two Numbers(Medium)1. QuestionYou are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a

2017-09-18 17:53:03 325

原创 Leecode Week1: Two Sum

Week1:Two Sum1. QuestionGiven 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,

2017-09-11 10:48:55 189

空空如也

空空如也

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

TA关注的人

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