最新 最热

TCP的三次握手和四次挥手

TCP(Transmission Control Protocol 传输控制协议)是一种面向连接的、可靠的、基于字节流的传输层通信协议。TCP工作在网络OSI七层模型中的第四层-传输层,下面一张图展示...

2018-04-04
1

​UVM(九)之sequencej机制续1

UVM(九)之sequencej机制续1当一个sequence启动起来之后,UVM会自动执行sequence的body任务,所以要产生各种和杨的激励,就要写好body任务。body这个任务完成的事...

2018-02-26
1

UVM模型(四)

UVM模型(四)1.常用到的uvm_component uvm_driver:所有的driver都要派生自uvm_driver。driver的功能就是向sequencer索要sequence

2018-02-26
0

UVM模型(三)之objection

UVM模型(三)之objection1.object与component不是两个对等的概念uvm_object是UVM中最基本的类。uvm_component有两大特性,一是通过在new的时候指

2018-02-26
1

Leetcode 60 Permutation Sequence

The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, We get the following sequence (ie,...

2018-01-12
1

Leetcode 128 Longest Consecutive Sequence

Given an unsorted array of integers, find the length of the longest consecutive elements sequence. For example, Given [100, 4, 200, 1, 3, 2], The longest co...

2018-01-12
1

Leetcode 264. Ugly Number II

Write a program to find the n-th ugly number. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2, 3, 4, 5, 6, 8, 9...

2018-01-12
0

泛函编程(15)-泛函状态-随意数产生器

对于OOP程序员来说,泛函状态变迁(functional state transition)是一个陌生的课题。泛函状态变迁是通过泛函状态数据类型(functional state)来实现的。

2018-01-04
0

泛函编程(10)-异常处理-Either

上节我们介绍了新的数据类型Option:一个专门对付异常情况出现时可以有一致反应所使用的数据类型。Option可以使编程人员不必理会出现异常后应该如何处理结果,他只是获得了一个None值,但...

2018-01-04
1