//vector
public synchronized int size() {};
public synchronized e get(int index) {};
//hashtable
public synchronized v put(k key, v value) {};
public synchronized v remove(object key) {};
private v doput(k key, v value, boolean onlyifabsent) {
node<k,v> z; // added node
if (key == null)
throw new nullpointerexception();
comparator<? super k> cmp = comparator;
outer: for (;;) {
for (node<k,v> b = findpredecessor(key, cmp), n = b.next;;) { //查找前继节点
if (n != null) { //查找到前继节点
object v; int c;
node<k,v> f = n.next; //获取后继节点的后继节点
if (n != b.next) //发生竞争,两次节点获取不一致,并发导致
break;
if ((v = n.value) == null) { // 节点已经被删除
n.helpdelete(b, f);
break;
}
if (b.value == null || v == n)
break;
if ((c = cpr(cmp, key, n.key)) > 0) { //进行下一轮查找,比当前key大
b = n;
n = f;
continue;
}
if (c == 0) { //相等时直接cas修改值
if (onlyifabsent || n.casvalue(v, value)) {
@suppresswarnings("unchecked") v vv = (v)v;
return vv;
}
break; // restart if lost race to replace value
}
// else c < 0; fall through
}
z = new node<k,v>(key, value, n); //9. n.key > key > b.key
if (!b.casnext(n, z)) //cas修改值
break; // restart if lost race to append to b
break outer;
}
}
int rnd = threadlocalrandom.nextsecondaryseed(); //获取随机数
if ((rnd & 0x80000001) == 0) { // test highest and lowest bits
int level = 1, max;
while (((rnd >>>= 1) & 1) != 0) // 获取跳表层级
++level;
index<k,v> idx = null;
headindex<k,v> h = head;
if (level <= (max = h.level)) { //如果获取的调表层级小于等于当前最大层级,则直接添加,并将它们组成一个上下的链表
for (int i = 1; i <= level; ++i)
idx = new index<k,v>(z, idx, null);
}
else { // try to grow by one level //否则增加一层level,在这里体现为index<k,v>数组
level = max + 1; // hold in array and later pick the one to use
@suppresswarnings("unchecked")index<k,v>[] idxs =
(index<k,v>[])new index<?,?>[level+1];
for (int i = 1; i <= level; ++i)
idxs[i] = idx = new index<k,v>(z, idx, null);
for (;;) {
h = head;
int oldlevel = h.level;
if (level <= oldlevel) // lost race to add level
break;
headindex<k,v> newh = h;
node<k,v> oldbase = h.node;
for (int j = oldlevel+1; j <= level; ++j) //新添加的level层的具体数据
newh = new headindex<k,v>(oldbase, newh, idxs[j], j);
if (cashead(h, newh)) {
h = newh;
idx = idxs[level = oldlevel];
break;
}
}
}
// 逐层插入数据过程
splice: for (int insertionlevel = level;;) {
int j = h.level;
for (index<k,v> q = h, r = q.right, t = idx;;) {
if (q == null || t == null)
break splice;
if (r != null) {
node<k,v> n = r.node;
// compare before deletion check avoids needing recheck
int c = cpr(cmp, key, n.key);
if (n.value == null) {
if (!q.unlink(r))
break;
r = q.right;
continue;
}
if (c > 0) {
q = r;
r = r.right;
continue;
}
}
if (j == insertionlevel) {
if (!q.link(r, t))
break; // restart
if (t.node.value == null) {
findnode(key);
break splice;
}
if (--insertionlevel == 0)
break splice;
}
if (--j >= insertionlevel && j < level)
t = t.down;
q = q.down;
r = q.right;
}
}
}
return null;
}