I I HDU 3466Proud Merchants(贪心+01背包) Recently, iSea went to an ancient country. For such a long time, it was the most wealthy and powerful kingdom in ...
分类:
其他好文 时间:
2020-04-20 14:04:37
阅读次数:
77
定义 定义了对象之间的一对多依赖,让多个观察者对象同时监听某一个主题对象,当主题对象发生变化时,它的所有依赖者(观察者)都会收到通知并更新 类型 行为型 适用场景 关联行为场景,建立一套触发机制 观察者模式-优点 观察者和被观察者之间建立一个抽象的耦合 观察者模式支持广播通信 观察者模式缺点 观察者 ...
分类:
其他好文 时间:
2020-04-18 21:20:19
阅读次数:
58
Problem : Given a non negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you ...
分类:
其他好文 时间:
2020-04-18 13:33:58
阅读次数:
75
应用场景 举个栗子,30个人上一个公共厕所,但是只有3个坑位 semaphore.acquire sync acquireSharedInterruptibly ①AQS setHeadAndPropagate sync .releaseShared ① AQS tryReleaseShared,具 ...
分类:
其他好文 时间:
2020-04-18 12:12:17
阅读次数:
68
RESET is a flag in TCP packets to indicate that the conection is not longer working. So, if any of the two participants in a TCP connection send a pac ...
分类:
其他好文 时间:
2020-04-18 09:16:18
阅读次数:
74
Problem : Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child ...
分类:
其他好文 时间:
2020-04-14 18:27:41
阅读次数:
69
安装完MySQLdb无法使用 Traceback (most recent call last): File "test.py", line 10, in <module> import MySQLdb as mysql File "/usr/lib64/python2.7/site-package ...
分类:
数据库 时间:
2020-04-14 14:07:48
阅读次数:
122
Signals of most probably extra-terrestrial origin have been received and digitalized by The Aeronautic and Space Administration (that must be going th ...
分类:
其他好文 时间:
2020-04-13 12:16:36
阅读次数:
87
列表非常适合用于存储在程序运行期间可能变化的数据集。列表是可以修改的,这对处理网站的用户列表或游戏中的角色列表至关重要。 Python将不能修改的值称为不可变的 ,而不可变的列表被称为元组。然而,有时候需要创建一系列不可修改的元素,元组可以满足这种需求。 元组看起来犹如列表,但使用圆括号而不是方括号 ...
分类:
编程语言 时间:
2020-04-13 00:34:17
阅读次数:
131
Future major versions of TensorFlow will allow gradients to flowinto the labels input on backprop by default. See @{tf.nn.softmax_cross_entropy_with_l ...
分类:
其他好文 时间:
2020-04-11 12:59:46
阅读次数:
124