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
// Author: Taylor Carr | |
// | |
// Spring 2016 | |
// | |
// This program creates and manipulates a linked | |
// list of numbers | |
#include <iostream> | |
#include <cstddef> | |
#include <vector> |
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
// Author: Taylor Carr | |
// | |
// Spring 2016 | |
// | |
// This program utilizes recursive functions to manipulate | |
// an integer value entered by the user. | |
#include <iostream> | |
#include <cmath> | |
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
// Author: Taylor Carr | |
// | |
// Spring 2016 | |
// | |
// This program generates a list of numbers and | |
// utilizes different sorting and searching methods | |
// to see which ones take the least amount of time | |
#include <iostream> | |
#include <iomanip> |
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
// This is the agent application that will be used to send actions to the server. | |
// It takes 3 arguments, server IP or host, port, and the action requested. | |
// List of includes | |
#include <netinet/in.h> | |
#include <netdb.h> | |
#include <arpa/inet.h> | |
#include <stdio.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> |
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
package assign6; | |
import java.util.*; | |
/** | |
* This class carries out the merge sort algorithm in parallel. | |
* | |
* @author Taylor Carr | |
* @version 1.0 | |
*/ |