示例

function insert(nodeBefore,target){
    target.next = nodeBefore.next
    nodeBefore.next = target
}