8 hours agoElon Musk completes one week at Twitter: What has happened so far, what is going onElon Musk has already fired top executives, given a job threat to employees for not meeting deadlines for the latest changes, and it now reportedly plans to fire half of Twitter’s workforce by November 4. Here is everything that has happened so far and what is going on In Short Elon Musk…Elon Musk4 min readElon Musk4 min read
10 hours agoFrequently Asked Questions in Breadth-First Search (BFS)❔❔Does BFS also work with disconnected graphs? The conventional/straightforward BFS approach does not work with the disconnected graphs as not all the vertices are connected with all the other vertices. But, with a modification in the simple approach, you can make BFS work for disconnected graphs too. What is the time complexity of the BFS algorithm? The time complexity of the BFS algorithm is the same…Coding2 min readCoding2 min read
22 hours agoBFS for Disconnected GraphIn the previous post, BFS only with a particular vertex is performed i.e. it is assumed that all vertices are reachable from the starting vertex. …Coding3 min readCoding3 min read
1 day agoData Structure — Breadth First TraversalBreadth First Search (BFS) algorithm traverses a graph in a breadthward motion and uses a queue to remember to get the next vertex to start a search, when a dead end occurs in any iteration. he only catch here is, that, unlike trees, graphs may contain cycles, so we may…Datastrucutre2 min readDatastrucutre2 min read