Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedList ¶
type LinkedList struct {
Head *ListNode
}
func (*LinkedList) Length ¶
func (l *LinkedList) Length() int
func (*LinkedList) Print ¶
func (l *LinkedList) Print()
type ListNodeDouble ¶
type ListNodeDouble struct { Val int Next *ListNodeDouble Prev *ListNodeDouble }
func NewListNodeDouble ¶
func NewListNodeDouble(val int) *ListNodeDouble
Click to show internal directories.
Click to hide internal directories.