- Natalie Weizenbaum Lead designer and developer of Sass
- Nicole Sullivan Inventor of OOCSS
- Sara Soueidan Creator of CSS reference
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function BST(value) { | |
| this.value = value; | |
| this.right = null; | |
| this.left = null; | |
| } | |
| BST.prototype.insert = function(value) { | |
| if (value <= this.value) { | |
| if (!this.left) this.left = new BST(value); | |
| else this.left.insert(value); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function LinkedList() { | |
| this.head = null; | |
| this.tail = null; | |
| } | |
| function Node(value, next, prev) { | |
| this.value = value; | |
| this.next = next; | |
| this.prev = prev; | |
| } |