Assignment 2COMP9021, Trimester 2, 20191. General matter1.1. Aims. The purpose of the assignment is to: design and implement an interface based on the ...
分类:
其他好文 时间:
2019-08-01 20:01:41
阅读次数:
82
题意:要完成一个由s个子项目组成的项目,给b(b>=s)个部门分配,从而把b个部门分成s个组。分组完成后,每一组的任 意两个点之间都要传递信息。假设在(i,j)两个点间传送信息,要先把信息加密,然后快递员从i出发到总部,再加 密,在到j点。出于安全原因,每次只能携带一条消息。现在给出了道路网络、各个 ...
分类:
其他好文 时间:
2019-07-31 18:11:00
阅读次数:
96
函数func_in的局部变量num未定义而引发的错误: local variable 'num' referenced before assignment 函数func_in即使定义在函数func中,但它的变量仍然是局部变量,与函数func的参数num不相关。 ...
分类:
编程语言 时间:
2019-07-30 20:04:47
阅读次数:
138
Responsibility Assignment Matrix R-responsibility A-accountable C-consultant I-inform ...
分类:
其他好文 时间:
2019-06-30 09:19:01
阅读次数:
101
Assignment 3: Frequent Itemsets, Clustering,AdvertisingFormative, Weight (15%), Learning objectives (1, 2, 3),Abstraction (4), Design (4), Communicati ...
分类:
其他好文 时间:
2019-06-12 19:29:20
阅读次数:
93
【list】的内置函数时间复杂度 方法复杂度简介 index[x] O(1) 索引 index assignment O(1) 索引赋值 append O(1) 尾部追加 pop() O(1) 尾部弹出 pop(i) O(n) 指定位置弹出 n列表长度, 最坏时间复杂度 insert(i, item ...
分类:
其他好文 时间:
2019-06-12 18:20:36
阅读次数:
136
Computer Science 220S1C (2019)Assignment 4 (traversal and optimisation)Due date June 7, 2019, 10pm100 Marks in totalThis assignment requires you to su ...
分类:
其他好文 时间:
2019-06-06 21:11:40
阅读次数:
78
报错信息:UnboundLocalError: local variable referenced before assignment 在函数内部修改全局变量时报错。 因为:在python里,如果在函数内部试图去修改一个全局变量,那么实际上的操作是 Python会创建一个新的名字一模一样的局部变量, ...
分类:
编程语言 时间:
2019-06-01 14:06:59
阅读次数:
120
Wentworth Institute of TechnologyCOMP 3450 – Parallel and Distributed ComputingSummer 2019, SchusterLab Assignment 1In this assignment you are to writ ...
分类:
其他好文 时间:
2019-05-26 20:00:53
阅读次数:
165
CSE/EEE 230 Assignment 2Due May 28 (11:59PM)This assignment is designed to introduce you to the MIPS assembly language and the MIPS simulator.For this ...
分类:
其他好文 时间:
2019-05-26 19:44:44
阅读次数:
133