BGBraiden Goleinbraiden-gole.hashnode.dev00SOM In C Sharp7h ago · 24 min read · A Self-Organizing Map (SOM), often referred to as a Kohonen map, represents one of the most elegant applications of unsupervised artificial neural networks in machine learning. Unlike traditional backJoin discussion
BGBraiden Goleinbraiden-gole.hashnode.dev00K-Means from scratch in C#22h ago · 27 min read · Before the algorithm can begin grouping, it requires a jumping-off point. This begins by placing K points into your data space. These are the Centroids the gravitational centers of your future clusterJoin discussion
BGBraiden Goleinbraiden-gole.hashnode.dev00Depth-First Search In C1d ago · 17 min read · In the world of computer science, searching through complex networks whether they are social media connections, street maps, or the branching possibilities of a chess game requires a systematic strateJoin discussion
BGBraiden Goleinbraiden-gole.hashnode.dev00Breadth-First Search In C2d ago · 15 min read · Imagine dropping a stone into a still pond. The water doesn't rush to the opposite shore immediately; instead, it moves outward in concentric circles, hitting every point at distance 1, then distance Join discussion
BGBraiden Goleinbraiden-gole.hashnode.dev00Heap Sort In C3d ago · 13 min read · In the world of sorting, we often choose between speed and memory. While Quick Sort is fast, its worst-case performance can be a gamble. Merge Sort is stable but hungry for memory. Heap Sort stands ouJoin discussion