ANAL NAFIS FUAD SHUVOinshuvonafis.hashnode.dev·Apr 21, 2024 · 2 min readProject Report1. Data Collection and Preprocessing In this section, we describe the process of gathering and preparing the dataset for our machine learning project. 1.1 Data Reading and Loading We begin by reading and loading the preprocessed EEG data from the dat...00
ANAL NAFIS FUAD SHUVOinshuvonafis.hashnode.dev·Jan 14, 2024 · 15 min readMAP in C++ STLMAP DESCRIPTION: A container that represents an associative array of key-value pairs. Allows efficient retrieval of values based on their associated keys. Ensures that each key is unique within the map. Suitable for scenarios where a collection o...00
ANAL NAFIS FUAD SHUVOinshuvonafis.hashnode.dev·Jan 12, 2024 · 13 min readSET in C++ STLSET DESCRIPTION: A container that represents a sorted set of unique elements. Ensures that the elements are stored in sorted order according to the provided comparison criterion. Suitable for scenarios where a collection of unique, sorted elements...00
ANAL NAFIS FUAD SHUVOinshuvonafis.hashnode.dev·Jan 12, 2024 · 7 min readPriority Queue in C++ STLDESCRIPTION A container that represents a priority queue, implementing a binary heap to maintain elements in a specific order (max heap or min heap). Follows the priority queue principle, where the element with the highest or lowest priority is ser...00
ANAL NAFIS FUAD SHUVOinshuvonafis.hashnode.dev·Jan 12, 2024 · 6 min readQueue In C++ StlDESCRIPTION A container that follows the First-In-First-Out (FIFO) principle, where the first element added is the first one to be removed. Provides a simple and efficient interface for basic queue operations. Suitable for scenarios where elements...00