Kalpana's academy
Kalpana's academy
  • 58
  • 854
Case study video | C.Kalpana, AP / AIDS | SNS institutions
The shortest path algorithm finds the minimum distance between two nodes in a graph, which may represent a network, map, or any other structure with weighted edges. The most commonly used algorithms are Dijkstra's algorithm, which works for graphs with non-negative edge weights by progressively selecting the closest unvisited node and updating the distances of its neighbors, and Bellman-Ford algorithm, which can handle negative edge weights and also detects negative weight cycles. A algorithm*, an extension of Dijkstra's, uses heuristics to optimize search, making it more efficient in certain contexts like pathfinding on maps. These algorithms help solve problems like navigation, routing, and resource allocation, ensuring the most efficient path is selected.
#snsinsitutions #snsdesignthinkers #designthinking
มุมมอง: 3

วีดีโอ

DT based classroom delivery | C.Kalpana, AP / AIDS | SNS institutions
มุมมอง 114 วันที่ผ่านมา
Design Thinking-based classroom delivery emphasizes a student-centered, problem-solving approach to learning. It begins with empathizing by understanding students’ needs and challenges, followed by defining the learning objectives or problems to address. In the ideation phase, students brainstorm solutions and generate creative ideas, often working collaboratively. They then move to prototyping...
Topological sort | C.Kalpana, AP / AIDS | SNS institutions
มุมมอง 214 วันที่ผ่านมา
Topological sorting is an ordering of the vertices of a directed acyclic graph (DAG) such that for every directed edge ( 𝑢 , 𝑣 ) (u,v), vertex 𝑢 u appears before vertex 𝑣 v in the ordering. This sorting is only possible if the graph has no cycles, as cycles would violate the prerequisite relationship required for topological sorting. The main applications of topological sorting include scheduli...
B Tree Consturction | C.Kalpana, AP / AIDS | SNS institutions
14 วันที่ผ่านมา
To construct a B-tree, you begin by choosing the tree's order (m), which determines the maximum number of children a node can have. As you insert keys, start from the root and traverse down to the appropriate leaf node, inserting the key in sorted order. If a node becomes full (containing 𝑚 − 1 m−1 keys), it splits into two nodes, and the middle key is promoted to the parent node. This splittin...
B Trees | C.Kalpana, AP / AIDS | SNS institutions
มุมมอง 314 วันที่ผ่านมา
A B-tree is a self-balancing, multi-way search tree used to store and manage large datasets in a way that allows for efficient searching, insertion, and deletion operations. It is commonly used in databases and file systems. In a B-tree, each node contains multiple keys and children pointers, and the keys within each node are kept in sorted order. The tree maintains a balance by ensuring that a...
Minimum spanning tree | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 821 วันที่ผ่านมา
A Minimum Spanning Tree (MST) is a subset of the edges in a connected, undirected graph that connects all the vertices without any cycles, and the total weight of the edges in the tree is minimized. In other words, an MST is a tree that spans all the vertices and has the smallest possible sum of edge weights. MSTs are useful in problems like network design (e.g., connecting computers or cities ...
BFS- graph traversal | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 221 วันที่ผ่านมา
BFS explores the graph level by level, starting from a selected node and visiting all its neighboring nodes before moving on to their neighbors, making it suitable for finding the shortest path in an unweighted graph. DFS, on the other hand, explores as far as possible along each branch before backtracking, which can be implemented using recursion or a stack. BFS is typically used in situations...
Graph traversal | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 921 วันที่ผ่านมา
Graph traversal is the process of visiting, or exploring, all the vertices (nodes) and edges of a graph in a specific order. The two primary methods of graph traversal are Breadth-First Search (BFS) and Depth-First Search (DFS). BFS explores the graph level by level, starting from a selected node and visiting all its neighboring nodes before moving on to their neighbors, making it suitable for ...
Topological sort | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 121 วันที่ผ่านมา
Topological Sort: Step 1: Initialize an empty stack to hold the topologically sorted order and a set to track visited vertices. Step 2: For each vertex, if it has not been visited, perform a DFS on it. Step 3: In the DFS, recursively visit all its unvisited neighbors. Step 4: After visiting all neighbors of a vertex, push it onto the stack. Step 5: Once all vertices are visited, the stack conta...
What is topological sorting? | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 121 วันที่ผ่านมา
Topological sorting is a linear ordering of the vertices of a directed acyclic graph (DAG) such that for every directed edge from vertex A to vertex B, vertex A appears before vertex B in the ordering. This sorting is particularly useful in scenarios where tasks or operations have dependencies, such as scheduling tasks, resolving compilation dependencies, or determining the sequence of courses ...
DT based classroom delivery | C.Kalpana AP -AI &DS | SNS Institutions
มุมมอง 2หลายเดือนก่อน
A group discussion is a structured conversation where participants exchange ideas, opinions, and arguments on a specific topic, often moderated to ensure equal participation. It fosters collaboration, critical thinking, and the ability to articulate and defend viewpoints while respecting others' perspectives. In professional or academic settings, group discussions are used to evaluate participa...
Case study video | C.Kalpana AP / SNSCE | SNS institutions
มุมมอง 4หลายเดือนก่อน
A case study provides the advantage of offering in-depth, real-world insights into complex issues, allowing for a detailed analysis of specific situations or problems. It enables a comprehensive understanding of the factors that influence outcomes, the challenges faced, and the strategies used to overcome them. By examining a case in its full context, it highlights key lessons, best practices, ...
Adjacency Matrix | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 8หลายเดือนก่อน
In an adjacency matrix, a 2D array is used where each cell (i, j) indicates whether there is an edge between vertex i and vertex j; for undirected graphs, the matrix is symmetric. This representation is space-inefficient for sparse graphs but is efficient for dense graphs and quick edge lookups. In an adjacency list, each vertex has a list of adjacent vertices, which is more memory-efficient fo...
Graph Representation | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 9หลายเดือนก่อน
Graph representation refers to the methods used to store and manage the data of a graph in a computer's memory. The two most common representations are adjacency matrices and adjacency lists. In an adjacency matrix, a 2D array is used where each cell (i, j) indicates whether there is an edge between vertex i and vertex j; for undirected graphs, the matrix is symmetric. This representation is sp...
Types of Graph | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 4หลายเดือนก่อน
Graphs can be classified into various types based on their structure and properties. Undirected graphs have edges without direction, representing bidirectional relationships, while directed graphs (digraphs) feature edges with direction, indicating one-way relationships. Weighted graphs assign a value or cost to each edge, whereas unweighted graphs treat all edges equally. A cyclic graph contai...
Graph | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 5หลายเดือนก่อน
Graph | Kalpana C -AP/AI &DS | SNS institutions
Double hashing | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 6หลายเดือนก่อน
Double hashing | Kalpana C -AP/AI &DS | SNS institutions
Linear Probing and Quadratic probing | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 3หลายเดือนก่อน
Linear Probing and Quadratic probing | Kalpana C -AP/AI &DS | SNS institutions
Collision Resolution Techniques | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 4หลายเดือนก่อน
Collision Resolution Techniques | Kalpana C -AP/AI &DS | SNS institutions
Hashing | Kalpana C -AP/AI &DS | SNS institutions
มุมมอง 8หลายเดือนก่อน
Hashing | Kalpana C -AP/AI &DS | SNS institutions
DT based classroom delivery | C.Kalpana, AP / AIDS | SNS institutions
มุมมอง 92 หลายเดือนก่อน
DT based classroom delivery | C.Kalpana, AP / AIDS | SNS institutions
Case study | C.Kalpana | SNS Institutions
มุมมอง 102 หลายเดือนก่อน
Case study | C.Kalpana | SNS Institutions
Divide and conquer | C.Kalpana | SNS Institutions
มุมมอง 22 หลายเดือนก่อน
Divide and conquer | C.Kalpana | SNS Institutions
Divide and conquer | C.Kalpana | SNS Institutions
มุมมอง 72 หลายเดือนก่อน
Divide and conquer | C.Kalpana | SNS Institutions
Insertion sort Code | C.Kalpana | SNS Institutions
มุมมอง 32 หลายเดือนก่อน
Insertion sort Code | C.Kalpana | SNS Institutions
Insertion sort | C.Kalpana | SNS Institutions
มุมมอง 12 หลายเดือนก่อน
Insertion sort | C.Kalpana | SNS Institutions
Selection sort | C.Kalpana | SNS Institutions
มุมมอง 32 หลายเดือนก่อน
Selection sort | C.Kalpana | SNS Institutions
Deque Deletion operation | C.Kalpana | SNS institutions
2 หลายเดือนก่อน
Deque Deletion operation | C.Kalpana | SNS institutions
Dequeue Insertion operation | C.Kalpana | SNS Institutions
มุมมอง 12 หลายเดือนก่อน
Dequeue Insertion operation | C.Kalpana | SNS Institutions
Deque | C.Kalpana | SNS Institutions
มุมมอง 32 หลายเดือนก่อน
Deque | C.Kalpana | SNS Institutions