Pawan Gangwaniblogs.pgangwani.co.in·Nov 11, 2024Crafting Graphs in TypeScript: A Comprehensive Guide to Building and Traversing Data StructuresGraphs are powerful data structures used to model relationships in data, from social networks and navigation systems to dependency tracking and recommendation engines. In this guide, we’ll create a graph in TypeScript, implementing basic operations l...DiscussTutorial
Arpit Singhd-s-a.hashnode.dev·Nov 11, 2024Graphs.The What? A graph is non-linear data structure used heavily to solve real world problems. The main building blocks of Graph are Nodes and Vertices, Node in a graph represents real world entities, some kind of information and vertices are technically ...Discussdata structures
Gerard Sansai-cosmos.hashnode.dev·Nov 9, 2024Beyond Correlation: Giving LLMs a Symbolic Crutch with Graph-Based LogicLarge Language Models (LLMs) have achieved remarkable feats, generating human-quality text and even demonstrating some semblance of understanding. However, beneath the surface lies a fundamental limitation: they excel at correlation, not causation or...Discusssymbolic-reasoning
Kofi / IllestpreachaProblog.illestpreacha.com·Oct 24, 2024Mathober2024_SpiderGraphFeralWebbing For the 20th sketch of Mathober2024, FeralWebbing is coded in Hydra with a Spider Graph (24th Prompt of Matohober2024) with Rawgraphs. Poem Webbings Overlapping Circular fields snapping Eclipsing Shadows Dipping Light sources Slipping We...DiscussMathober2024rawgraphs
Rohit Gawanderohit253.hashnode.dev·Oct 7, 2024Chapter 36: Graphs (Part 2)In the last part of the DSA series, we explored the basic concepts of graphs, such as types of graphs, their representations, and traversals using DFS and BFS. In this chapter, we will dive deeper into the complexities of graphs, introducing more adv...DiscussDSA(Data Structure and Algorithm) In JAVAconnectedgraph
Teja Illaakadurga.hashnode.dev·Oct 2, 2024Djikstra Algorithm in JavaDjikstra Algorithm in Java import java.util.*; public class Main { public static class Node implements Comparable<Node> { public int vertices; public int distance; public Node(int vertices, int distance) { this.vertices = vert...Discussgraph algorithms
Teja Illaakadurga.hashnode.dev·Oct 2, 2024DFS and BFS on a Single GraphBFS and DFS Algorithm on a single Graph Take an Example of the below Graph import java.util.*; public class Main { public static class Graph { int v; int e; List<List<Integer>> arrList; public Graph(int v, int e) { this.v...DiscussDFS
Jyotiprakash Mishrablog.jyotiprakash.org·Sep 25, 2024Introduction to GraphsA graph is a collection of nodes (also called vertices) and edges that connect pairs of nodes. Graphs are an abstract data structure used to represent relationships between objects. A graph G is typically denoted as G = (V, E), where: V is the set o...Discuss·10 likes·1.1K readsgraphs
Chetan Dattachetan77.hashnode.dev·Sep 4, 2024M-Coloring ProblemProblem Given an undirected graph and an integer M. The task is to determine if the graph can be colored with at most M colors such that no two adjacent vertices of the graph are colored with the same color. Here coloring of a graph means the assignm...DiscussLeetcodem-coloring-problem
Polkam Srinidhinidhiblog.hashnode.dev·Aug 30, 2024#1 To Check, if Graph is a Tree? in JAVA1. Graph-Style DSA Problem: Is the Graph a Tree? Problem Statement: The problem is to determine whether the given undirected graph is a tree.Conditions to satisfy for sure: A graph is a tree if: It is connected. It does not contain any cycles. It ...Discussgraphs