Skip to main content

Recently Updated Pages

5. Simple Sorting Algorithms

Algorithm Programming - EE Module 7: Searching & Sorting

5.1 Bubble Sort Concept Bubble Sort repeatedly steps through the list, compares adjacent elements...

Updated 4 months ago by DS

4. Introduction to Sorting

Algorithm Programming - EE Module 7: Searching & Sorting

4.1 What is Sorting? Sorting is the process of arranging elements in a specific order (ascending ...

Updated 4 months ago by DS

3. Binary Search

Algorithm Programming - EE Module 7: Searching & Sorting

3.1 Concept Binary Search is a fast search algorithm that works on sorted arrays by repeatedly di...

Updated 4 months ago by DS

2. Linear Search

Algorithm Programming - EE Module 7: Searching & Sorting

2.1 Concept Linear Search (also called Sequential Search) checks every element in the array seque...

Updated 4 months ago by DS

Referensi Lebih Lanjut

Internet of Things Module 8 - Power Management

Penggunaan mode-mode sleep dalam kode belum dibahas secara terlalu detail dalam modul ini, silahk...

Updated 4 months ago by Digilab UI

Metode Mengurangi Konsumsi Daya ESP-32 : Mengganti Operating Mode

Internet of Things Module 8 - Power Management

Seperti pada tabel sebelumnya, terdapat bebeerapa operating mode yang didukung oleh ESP-32, diant...

Updated 4 months ago by Digilab UI

Metode Mengurangi Konsumsi Daya ESP-32 : Mengurangi Clock Speed CPU

Internet of Things Module 8 - Power Management

Terdapat beberapa faktor yang mempengaruhi tingkat konsumsi daya ESP-32, diantaranya sebagai beri...

Updated 4 months ago by Digilab UI

Konsumsi Daya pada ESP-32

Internet of Things Module 8 - Power Management

Sebagai mikrokontroler, ESP-32 memerlukan pasokan daya yang stabil agar dapat beroperasi dengan o...

Updated 4 months ago by Digilab UI

Tujuan Pembelajaran

Internet of Things Module 8 - Power Management

Setelah menyelesaikan modul ini, praktikan diharapkan mampu: Memahami tingkat konsumsi daya pada...

Updated 4 months ago by Digilab UI

2. Tree Concept

Algorithm Programming - CE Module 6 - Tree

2.1 Basic Theory 2.1.1 Definition of a Tree A Tree is a non-linear hierarchical data structure c...

Updated 4 months ago by RE

1. Introduction

Algorithm Programming - CE Module 6 - Tree

Module 6: Tree Author: YP Learning Objectives After completing this module, students are expecte...

Updated 4 months ago by RE

9. Common Errors and Debugging

Algorithm Programming - EE Module 6 : Linked List

9.1 Memory Leaks Problem: void createList() { struct Node *head = (struct Node*)malloc(sizeof...

Updated 4 months ago by DS

8. Practical Applications

Algorithm Programming - EE Module 6 : Linked List

8.1 Polynomial Addition #include <stdio.h> #include <stdlib.h> // Node for polynomial term struc...

Updated 4 months ago by DS

7. Advanced Linked List Operations

Algorithm Programming - EE Module 6 : Linked List

7.1 Reverse a Singly Linked List Method 1: Iterative void reverseList(struct Node **head) { s...

Updated 4 months ago by DS

6. Circular Linked List

Algorithm Programming - EE Module 6 : Linked List

6.1 Structure In a circular linked list, the last node points back to the first node (or head). s...

Updated 4 months ago by DS

5. Doubly Linked List

Algorithm Programming - EE Module 6 : Linked List

5.1 Node Structure struct DNode { int data; struct DNode *prev; // Pointer to previous n...

Updated 4 months ago by DS

4. Complete Singly Linked List Example

Algorithm Programming - EE Module 6 : Linked List

#include <stdio.h> #include <stdlib.h> // Node structure struct Node { int data; struct ...

Updated 4 months ago by DS

3. Singly Linked List Operations

Algorithm Programming - EE Module 6 : Linked List

3.1 Creating an Empty List #include <stdio.h> #include <stdlib.h> struct Node { int data; ...

Updated 4 months ago by DS

2. Node Structure

Algorithm Programming - EE Module 6 : Linked List

2.1 Defining a Node In C, a node is typically defined using a structure: // Definition of a node ...

Updated 4 months ago by DS

1. Introduction to Linked Lists

Algorithm Programming - EE Module 6 : Linked List

1.1 What is a Linked List? A linked list is a linear data structure where elements are not stored...

Updated 4 months ago by DS