In this course we will do live coding of:
1. Writing BITMAP file from Scratch in C
2. Word Frequency Counter Program in C using Binary Search Tree (BST).
While coding the programs, I am also sharing the thought process which goes on while implementing the logic. We will face compile-time, run-time errors and then we will resolve them.
.bmp file format is one of the very common uncompressed, raster digital image file format.
Binary Search Tree (BST) is one of the fundamental data structures used in software development. We use BST to implement Word Frequency Counter and get 20 highest frequency words from input text file.
In this course we will do hands-on coding of 2 programs:
Writing BITMAP file from Scratch in C
Understand .bmp file headers and do the implementation
RGB pixel data format and padding
Word Frequency Counter Program in C using Binary Search Tree (BST)
Modify 'integer BST' to store strings (char*)
Read and process text from .txt file
Store words and their frequency in BST
Extract top 20 high frequency words from BST
Different C concepts used during development:
malloc(), sizeof(), free(), typedef, structures, strtok, strcpy, strcmp, linked lists, gcc compiler, VS Code editor.