寂寞野狼

文章
8
资源
0
加入时间
2年10月21天

一一一、算法与数据结构

React组件通讯链表链表的创建以及增删改查操作链表链表的创建以及增删改查操作/*======定义结构======*/let node = function(element) { this.element = element this.next = null}let linkedList = function() { this.head = new node('head') this.find = find this.insert = insert this.updat