⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listnode.java

📁 Data Structures and Algorithm Analysis in Java -- Source Code
💻 JAVA
字号:
    package DataStructures;

    // Basic node stored in a linked list
    // Note that this class is not accessible outside
    // of package DataStructures

    class ListNode
    {
            // Constructors
        ListNode( Object theElement )
        {
            this( theElement, null );
        }

        ListNode( Object theElement, ListNode n )
        {
            element = theElement;
            next    = n;
        }

            // Friendly data; accessible by other package routines
        Object   element;
        ListNode next;
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -