欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

列表

程序员文章站 2022-07-09 15:45:58
...
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>列表</title>
</head>

<body>
    <script>
        function List() {
            // 列表元素个数
            this.listSize = 0;
            // 列表当前的位置
            this.pos = 0;
            // 初始化一个空数组用来保存列表元素
            this.dataStore = [];
            // 清空列表中的所有元素
            this.clear = clear;
            // 查找元素
            this.find = find;
            // 返回列表字符串形式
            this.toString = toString;
            // 在现有的元素后插入新元素
            this.insert = insert;
            // 在列表元素末尾增加新元素
            this.append = append;
            // 在列表中删除元素
            this.remove = remove;
            // 从列表的当前位置移动到第一个元素
            this.front = front;
            // 从列表的当前位置移动到最后一个位置
            this.end = end;
            // 将当前位置后移一位
            this.prev = prev;
            // 将当前位置前移一位
            this.next = next;
            // 列表包含元素的格式
            this.length = length;
            // 返回列表当前的位置
            this.currPos = currPos;
            // 将当前位置移动到指定的位置
            this.moveTo = moveTo;
            // 显示当前元素
            this.getElement = getElement;
            // 是否包含该元素
            this.contains = contains;
        }

        function append(element) {
            this.dataStore[this.listSize++] = element;
        }

        function find(element) {
            for (var i = 0; i < this.dataStore.length; ++i) {
                if (this.dataStore[i] == element) {
                    return i;
                }
            }
            return -1;
        }

        function remove(element) {
            var foundAt = this.find(element);
            if (foundAt > -1) {
                this.dataStore.slice(foundAt, 1);
                --this.listSize;
                return
            }
            return false
        }

        function length() {
            return this.listSize;
        }

        function toString() {
            return this.dataStore;
        }

        function insert(after) {
            var insertPos = this.find(after);
            if (insertPos > -1) {
                this.dataStore.splice(insertPos + 1, 0, element);
                ++this.listSize;
                return true;
            }
            return false;
        }

        function clear() {
            delete this.dataStore;
            this.dataStore.length = 0; // 创建一个空数组
            this.listSize = 0;
        }

        function contains(element) {
            for (var i = 0; i < this.dataStore.length; ++i) {
                if (this.dataStore[i] == element) {
                    return true;
                }
            }
            return false
        }

        // 遍历列表
        function front() {
            this.pos = 0;
        }

        function end() {
            this.pos = this.listSize - 1;
        }

        function prev() {
            if (this.pos > 0) {
                --this.pos;
            }
        }

        function next() {
            if (this.pos < this.listSize) {
                ++this.pos;
            }
        }

        function currPos() {
            return this.pos;
        }

        function moveTo(position) {
            this.pos = position;
        }

        function getElement() {
            return this.dataStore[this.pos]
        }

        var names = new List();
        names.append('小红');
        names.append('小王');
        names.append('小丽');
        names.next();
        alert(names.getElement());
        // 迭代器
        for (names.front();names.currPos() < names.length();names.next()) {
            console.log(names.getElement());
        }
    </script>
</body>

</html>