Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkedList ¶
type LinkedList struct {
Value int
Next *LinkedList
}
func InvertedBisection ¶
func InvertedBisection(head *LinkedList) *LinkedList
InvertedBisection O(n) time | O(1) space - where n is the number of nodes in the Linked List
Click to show internal directories.
Click to hide internal directories.