- 博客(2)
- 资源 (8)
- 收藏
- 关注
原创 Oracle笔记
DDL Create语句: CREATE TABLE myTable ( id int, name varchar2(32) ); CREATE TABLE student( sid integer, name varchar(20), major char(4), constraint student_pk primary key (sid), const
2013-01-04 09:25:11
352
原创 Queue implementation: A circular array with one unused location
An array is used to represent a queue: Initial State: the queue is empty frontIndex = 0, backIndex = array.length - 1 public void enqueue(T newEntry){ if(array is full) {double Array;
2013-01-04 08:59:45
390
有限状态机和VHDL的综合运用实例
2012-12-31
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人