View dictionary.c
/**************************************************************************** | |
* dictionary.c | |
* | |
* Computer Science 50 | |
* Problem Set 5 | |
* | |
* Implements a dictionary's functionality. | |
***************************************************************************/ | |
#include <ctype.h> |
View euclid.c
/**************************************************************************** | |
* euclid.c | |
* | |
* Determine the greatest common divisor of two integers using Euclid's algorithm | |
* | |
* usage: ./eculid num1 num2 | |
***************************************************************************/ | |
#include <stdio.h> | |
#include <stdlib.h> |
View arc_distance.c
/**************************************************************************** | |
* arc_distance.c | |
* | |
* Calculates the distance between two GPS points using the Law of Haversines | |
***************************************************************************/ | |
#include <stdio.h> | |
#include <math.h> | |
#define pi 3.14159265358979323846 |
View fibonacci.c
/**************************************************************************** | |
* fibonacci.c | |
* | |
* Display the Fibonacci sequence, characterised by the fact that every number | |
* after the first two is the sum of the two preceding ones | |
***************************************************************************/ | |
#include <stdio.h> | |
int main(void) |
View resize.c
/**************************************************************************** | |
* resize.c | |
* | |
* HarvardX - CS50 | |
* Problem Set 4 | |
* | |
* Resize a BMP image by a factor of n | |
***************************************************************************/ | |
#include <stdio.h> |
View whodunit.c
/**************************************************************************** | |
* whodunit.c | |
* | |
* HarvardX - CS50 | |
* Problem Set 4 | |
* | |
* Change the colour of a BMP's pixels to reveal a hidden message | |
***************************************************************************/ | |
#include <stdio.h> |
View sort.c
/**************************************************************************** | |
* sort.c | |
* | |
* HarvardX - CS50 | |
* | |
* A selection of sorting functions | |
* Bubble sort, selection sort, and counting sort | |
***************************************************************************/ | |
/** |
View search.c
/**************************************************************************** | |
* search.c | |
* | |
* HarvardX - CS50 | |
* | |
* Two search functions. Linear search and binary search | |
***************************************************************************/ | |
/** | |
* Linear search function |
View vigenere.c
/**************************************************************************** | |
* vigenere.c | |
* | |
* HarvardX - CS50 | |
* Problem Set 2 | |
* | |
* Encipher text using Vigenere's algorithm (ci = (pi + kj) % 26) | |
***************************************************************************/ | |
#include <cs50.h> |
View Password Generator - C#
using System; | |
using System.Text; | |
using System.Windows; | |
namespace Password_Generator | |
{ | |
/// <summary> | |
/// Interaction logic for MainWindow.xaml | |
/// </summary> | |
public partial class MainWindow : Window |
NewerOlder