linkedList.indexOf(3) // 返回此列表中首次出现的指定元素的索引
linkedList.lastIndexOf(3) // 返回此列表中最后出现的指定元素的索引
linkedList.removeFirstOccurrence(3) // 从此列表中移除第一次出现的指定元素(从头部到尾部遍历列表)
linkedList.removeLastOccurrence(3) // 从此列表中移除最后一次出现的指定元素(从尾部到头部遍历列表)
linkedList.indexOf(3) // 返回此列表中首次出现的指定元素的索引
linkedList.lastIndexOf(3) // 返回此列表中最后出现的指定元素的索引
linkedList.removeFirstOccurrence(3) // 从此列表中移除第一次出现的指定元素(从头部到尾部遍历列表)
linkedList.removeLastOccurrence(3) // 从此列表中移除最后一次出现的指定元素(从尾部到头部遍历列表)