brjohnson61 / DNARepeatFinder

Program to find repeated sequences of four character (A, C, G, and T). Uses bit operations to encode the letters of the sequence into a 20-bit unsigned int. HashTable implemented with Linked List collision avoidance as well as linked list of all added elements for quick iteration through the table. Each element only malloc'd once, and pointers were used to create all functionality.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This repository is not active

About

Program to find repeated sequences of four character (A, C, G, and T). Uses bit operations to encode the letters of the sequence into a 20-bit unsigned int. HashTable implemented with Linked List collision avoidance as well as linked list of all added elements for quick iteration through the table. Each element only malloc'd once, and pointers were used to create all functionality.


Languages

Language:C 96.1%Language:Makefile 3.9%