Introducción

1

¿Qué es un grafo?

2

¿Qué es un árbol?

3

¿Qué es recursión?

4

Aplicaciones reales de grafos y árboles

5

Formas de representar un grafo

DFS

6

Análisis de DFS: algoritmo de búsqueda en profundidad

7

Programando DFS de forma recursiva

8

Otras formas de programar DFS

9

Recorridos y profundidad de un Árbol

10

Sum Root to Leaf Numbers: análisis del problema

11

Solución de Sum Root to Leaf Numbers

12

Playground: Sum Root to Leaf Numbers

13

Programando Sum Root to Leaf Numbers en Golang

14

Number of Islands: análisis del problema

15

Solución de Number of Islands

16

Playground: Number of Islands

17

Programando Number of Islands en Python

18

Ejercicios recomendados de DFS

19

Ejercicios resueltos de DFS

BFS

20

Análisis de BFS: algoritmo de búsqueda en anchura

21

Programando BFS con Python

22

Minimum Knights Moves (movimientos de caballo en ajedrez): análisis del problema

23

Solución de Minimum Knights Moves

24

Playground: Minimum Knights Moves

25

Programando Minimum Knights Moves con Python

26

Rotting Oranges: análisis del problema

27

Solución de Rotting Oranges

28

Playground: Rotting Oranges

29

Rotting Oranges con Java

30

Shortest Bridge Between Islands: análisis del problema

31

Solución de Shortest Bridge Between Islands

32

Playground: Shortest Bridge Between Islands

33

Programando Shortest Bridge Between Islands con Python

34

Ejercicios recomendados de BFS

35

Ejercicios resueltos de BFS

Backtrack

36

Algoritmo de Backtrack

37

Letter Combinations of a Phone Number: análisis del problema

38

Solución de Letter Combinations of a Phone Number

39

Programando Letter Combinations of a Phone Number con C++

40

Playground: Letter Combinations of a Phone Number

41

Restore IP Addresses: análisis del problema

42

Programando Restore IP Addresses con C++

43

Playground: Restore IP Addresses

44

Word Search: análisis del problema

45

Solución de Word Search

46

Playgrund: Word Search

47

Programando Word Search JavaScript

48

Reto: N Queens Puzzle

49

Ejercicios recomendados de Backtrack

50

Ejercicios resueltos de Backtrack

Próximos pasos

51

¿Qué otros algoritmos y tipos de grafos puedes aprender?

52

¿Quieres más cursos avanzados de algoritmos?

Convierte tus certificados en títulos universitarios en USA

Antes: $249

Currency
$209

Paga en 4 cuotas sin intereses

Paga en 4 cuotas sin intereses
Suscríbete

Termina en:

18 Días
6 Hrs
53 Min
22 Seg

Otras formas de programar DFS

8/52

Lectura

Una implementación estándar de DFS coloca cada vértice del gráfico en una de las dos categorías, visitado o no visitado.
El objetivo del algoritmo es marcar cada vértice como visitado evitando los ciclos. En este algoritmo:

...

Regístrate o inicia sesión para leer el resto del contenido.

Aportes 4

Preguntas 0

Ordenar por:

¿Quieres ver más aportes, preguntas y respuestas de la comunidad?

My Little DFS with Stack as aux DS \n ```js /* DEPTH FIRST SEARCH AS DFS */ /* GRAPH TRAVERSAL BY USING STACK AS DSA */ /* VISITED ARRAY AS AUX LIST TO HANDLE VISITED NODES AVOID VISIT VERTICES MULTIPLE TIME AS LOOP */ const V = 5; function dfs(arr, source) { var mstack = []; var isVisited = Array(V).fill(false); mstack.push(source); isVisited[source] = true; while (mstack.length) { var node = mstack.pop(); document.write("Visited Node: " + node); for (var index = 0; index < V; index++) { if (arr[node][index] === 1 && isVisited[index] === false) { mstack.push(index); isVisited[index] = true; } } } } // ADJ MATRIX OF GRAPH TRAVERSAL BY DFS ALGORITHM ... var arr = [ [0, 1, 1, 1, 0], [1, 0, 0, 1, 1], [1, 0, 0, 1, 0], [1, 1, 1, 0, 1], [0, 1, 0, 1, 0] ]; document.write("DFS of the given graph is : "); dfs(arr, 0); ```/\* DEPTH FIRST SEARCH AS DFS \*/ /\* GRAPH TRAVERSAL BY USING STACK AS DSA \*/ /\* VISITED ARRAY AS AUX LIST TO HANDLE VISITED NODES AVOID VISIT VERTICES MULTIPLE TIME AS LOOP \*/ const V = 5; function dfs(arr, source) { var mstack = \[]; var isVisited = Array(V).fill(false); mstack.push(source); isVisited\[source] = true; while (mstack.length) { var node = mstack.pop(); document.write("Visited Node: " + node); for (var index = 0; index < V; index++) { if (arr\[node]\[index] === 1 && isVisited\[index] === false) { mstack.push(index); isVisited\[index] = true; } } } } // ADJ MATRIX OF GRAPH TRAVERSAL BY DFS ALGORITHM ... var arr = \[ \[0, 1, 1, 1, 0], \[1, 0, 0, 1, 1], \[1, 0, 0, 1, 0], \[1, 1, 1, 0, 1], \[0, 1, 0, 1, 0] ]; document.write("DFS of the given graph is : "); dfs(arr, 0);
Estos cursos están muy mal organizados, uno viene de ver fundamentos de algoritmos y llega aquí y no entiende nada, ella dice que hay un curso antes de este pero no se sabe cual es, deberían hacer una ruta solo de algoritmos que uno sepa cual seguir para no perderse, yo la verdad ya me desmotive y siento que enterré mi plata con platzi
/* DFS: Depth First Search - Búsqueda en profundidad */

/* DFS boolean true or false */
const dfsb = function (root, target) {
    if (!root) return false;
    if (root.value === target) return true;
    return dfsb(root.left, target) || dfsb(root.right, target);
}

/* DFS node or null */
const dfsn = function (root, target) {
    if (!root) return null;
    if (root.value === target) return root;
    return dfsn(root.left, target) || dfsn(root.right, target);
}

const root = {
    value: 1,
    left: {
        value: 2,
        left: {
            value: 4,
            left: null,
            right: null
        },
        right: {
            value: 5,
            left: null,
            right: null
        }
    },
    right: {
        value: 3,
        left: {
            value: 6,
            left: null,
            right: null
        },
        right: {
            value: 7,
            left: null,
            right: null
        }
    }
}

console.log(dfsn(root, 5)); // { value: 5, left: null, right: null }
console.log(dfsn(root, 8)); // null

console.log(dfsb(root, 5, true)); // true
console.log(dfsb(root, 8, true)); // false