Last active
July 8, 2021 17:42
-
-
Save e200/21cae1b2c25e9553edb89569010ea8b6 to your computer and use it in GitHub Desktop.
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
// Simulate genetic inheritance of blood type | |
#include <stdbool.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
// Each person has two parents and two alleles | |
typedef struct person | |
{ | |
struct person *parents[2]; | |
char alleles[2]; | |
} | |
person; | |
const int GENERATIONS = 3; | |
const int INDENT_LENGTH = 4; | |
person *create_family(int generations); | |
void print_family(person *p, int generation); | |
void free_family(person *p); | |
char random_allele(); | |
person *create_person(person *parents[2], char alleles[2]); | |
int main(void) | |
{ | |
// Seed random number generator | |
srand(time(0)); | |
// Create a new family with three generations | |
person *p = create_family(GENERATIONS); | |
// Print family tree of blood types | |
print_family(p, 0); | |
// Free memory | |
free_family(p); | |
} | |
// Create a new individual with `generations` | |
person *create_family(int generations) | |
{ | |
// TODO: Allocate memory for new person | |
person *p = malloc(sizeof(person)); | |
if (p == NULL) | |
{ | |
exit(1); | |
} | |
// Generation with parent data | |
if (generations > 1) | |
{ | |
// TODO: Recursively create blood type histories for parents | |
for (int i = 0; i < 2; i++) | |
{ | |
p->parents[i] = create_family(generations - 1); | |
} | |
// TODO: Randomly assign child alleles based on parents | |
for (int i = 0; i < 2; i++) | |
{ | |
p->alleles[i] = p->parents[i]->alleles[rand() % 2]; | |
} | |
} | |
// Generation without parent data | |
else | |
{ | |
p->parents[0] = NULL; | |
p->parents[1] = NULL; | |
p->alleles[0] = random_allele(); | |
p->alleles[1] = random_allele(); | |
} | |
// TODO: Return newly created person | |
return p; | |
} | |
// Free `p` and all ancestors of `p`. | |
void free_family(person *p) | |
{ | |
if (p == NULL) | |
{ | |
return; | |
} | |
for (int i = 0; i < 2; i++) | |
{ | |
free_family(p->parents[i]); | |
} | |
free(p); | |
} | |
// Print each family member and their alleles. | |
void print_family(person *p, int generation) | |
{ | |
// Handle base case | |
if (p == NULL) | |
{ | |
return; | |
} | |
// Print indentation | |
for (int i = 0; i < generation * INDENT_LENGTH; i++) | |
{ | |
printf(" "); | |
} | |
// Print person | |
printf("Generation %i, blood type %c%c\n", generation, p->alleles[0], p->alleles[1]); | |
print_family(p->parents[0], generation + 1); | |
print_family(p->parents[1], generation + 1); | |
} | |
// Randomly chooses a blood type allele. | |
char random_allele() | |
{ | |
int r = rand() % 3; | |
if (r == 0) | |
{ | |
return 'A'; | |
} | |
else if (r == 1) | |
{ | |
return 'B'; | |
} | |
else | |
{ | |
return 'O'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment