This file contains 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
/// Module Four Assignment | |
using System; | |
namespace ModuleFourAssignment | |
{ | |
// Create a struct to represent a student | |
struct Student | |
{ | |
public string firstName; | |
public string lastName; |
This file contains 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
<?php | |
// Assignment research for balanced binary trees that tends to be more difficult | |
// than just implementing binary search trees. Here’s an example in PHP. | |
class Node | |
{ | |
protected $_parent = null; | |
protected $_left = null; | |
protected $_right = null; | |
protected $_key; | |
protected $_data = null; |
OlderNewer