🏠 Trang chủ
Benchmark
📊 Tất cả benchmark 🦖 Khủng long v1 🦖 Khủng long v2 ✅ Ứng dụng To-Do List 🎨 Trang tự do sáng tạo 🎯 FSACB - Trình diễn cuối cùng 🌍 Benchmark dịch thuật
Mô hình
🏆 Top 10 mô hình 🆓 Mô hình miễn phí 📋 Tất cả mô hình ⚙️ Kilo Code
Tài nguyên
💬 Thư viện prompt 📖 Thuật ngữ AI 🔗 Liên kết hữu ích

Thuật ngữ AI

Từ điển đầy đủ về Trí tuệ nhân tạo

162
danh mục
2.032
danh mục con
23.060
thuật ngữ
📖
thuật ngữ

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.

📖
thuật ngữ

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.

📖
thuật ngữ

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.

📖
thuật ngữ

A* Algorithm

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

📖
thuật ngữ

Bellman-Ford Algorithm

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

📖
thuật ngữ

Floyd-Warshall Algorithm

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

📖
thuật ngữ

Bidirectional Search

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

📖
thuật ngữ

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.

📖
thuật ngữ

Tarjan's Algorithm

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

📖
thuật ngữ

Strongly Connected Components

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

📖
thuật ngữ

Articulation Point

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

📖
thuật ngữ

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.

📖
thuật ngữ

Kosaraju's Algorithm

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

📖
thuật ngữ

Limited Depth Search

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

📖
thuật ngữ

Iterative Deepening Search

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

📖
thuật ngữ

Johnson's Algorithm

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

📖
thuật ngữ

Uniform Cost Search

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

📖
thuật ngữ

Eulerian Cycle

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

📖
thuật ngữ

Hamiltonian Cycle

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

🔍

Không tìm thấy kết quả