摘要: 没有哨兵的链表: ListSearch(L,k) { x = L.head; while(x!=null && x.key!=k) x = x.next; return x;} ListInsert(L,x){ x.next = L.head; if(L.head!=null) L.head.pre 阅读全文
posted @ 2017-09-04 13:37 Mr.Struggle 阅读(1301) 评论(0) 推荐(0) 编辑