🏠 Home
Benchmark
📊 Tutti i benchmark 🦖 Dinosauro v1 🦖 Dinosauro v2 ✅ App To-Do List 🎨 Pagine libere creative 🎯 FSACB - Ultimate Showcase 🌍 Benchmark traduzione
Modelli
🏆 Top 10 modelli 🆓 Modelli gratuiti 📋 Tutti i modelli ⚙️ Kilo Code
Risorse
💬 Libreria di prompt 📖 Glossario IA 🔗 Link utili

Glossario IA

Il dizionario completo dell'Intelligenza Artificiale

162
categorie
2.032
sottocategorie
23.060
termini
📖
termini

Breadth-First Search (BFS)

Graph traversal algorithm that explores nodes level by level, using a queue to systematically visit all vertices reachable from a starting point.

📖
termini

Depth-First Search (DFS)

Recursive traversal technique that explores as far as possible in each branch before backtracking, typically implemented with a stack or recursively.

📖
termini

Dijkstra's Algorithm

Greedy algorithm that determines the shortest path from a source vertex to all other vertices in a weighted graph with non-negative weights.

📖
termini

A* Algorithm

Optimal pathfinding algorithm combining heuristic and actual cost, using an evaluation function f(n) = g(n) + h(n) to efficiently guide exploration.

📖
termini

Bellman-Ford Algorithm

Shortest path algorithm capable of detecting negative weight cycles, iteratively relaxing all edges to propagate minimum distances.

📖
termini

Floyd-Warshall Algorithm

Dynamic programming algorithm that calculates shortest paths between all pairs of vertices by successively considering each vertex as an intermediate point.

📖
termini

Bidirectional Search

Technique that optimizes pathfinding by simultaneously conducting two searches from source and destination vertices until their intersection.

📖
termini

Topological Sorting

Linear ordering of vertices in a directed acyclic graph where each edge u→v respects the constraint that u appears before v in the final order.

📖
termini

Tarjan's Algorithm

Linear algorithm that identifies strongly connected components in a directed graph using depth-first search with numbering and stacks.

📖
termini

Strongly Connected Components

Maximal subgraphs where each vertex is reachable from every other vertex in the same subgraph through directed paths.

📖
termini

Articulation Point

Vertex whose removal increases the number of connected components of the graph, identified by depth-first search algorithms with numbering.

📖
termini

Bridges in a Graph

Critical edges whose removal disconnects the graph by increasing the number of connected components, detected by specialized depth-first search traversals.

📖
termini

Kosaraju's Algorithm

Two-phase algorithm using two depth-first searches to identify the strongly connected components of a directed graph.

📖
termini

Limited Depth Search

Variant of DFS that restricts the exploration depth to a predefined limit, avoiding combinatorial explosion in deep graphs.

📖
termini

Iterative Deepening Search

Search strategy combining advantages of BFS and DFS by performing series of limited-depth searches with increasing depths.

📖
termini

Johnson's Algorithm

Efficient algorithm for all-pairs shortest paths in weighted sparse graphs, combining Dijkstra and Bellman-Ford reweighting.

📖
termini

Uniform Cost Search

Variant of Dijkstra exploring the node with minimal accumulated cost without heuristic, guaranteeing optimality for graphs with positive costs.

📖
termini

Eulerian Cycle

Path traversing each edge exactly once, existing if and only if each vertex has even degree in a connected graph.

📖
termini

Hamiltonian Cycle

Path visiting each vertex exactly once, NP-complete problem without simple necessary and sufficient condition for existence.

🔍

Nessun risultato trovato