weighted_path 0.6.0

A Rust library for finding shortest paths in weighted graphs using Dijkstra's algorithm with multiple heap implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
//! Dijkstra's shortest path algorithm with multiple heap implementations.
//!
//! This module provides implementations of Dijkstra's algorithm using various
//! priority queue (heap) data structures, allowing you to choose the optimal
//! heap for your use case.
//!
//! # Basic Example
//!
//! ```
//! use weighted_path::dijkstra;
//!
//! // Parse graph from lines
//! let lines = vec![
//!     "4",
//!     "A", "B", "C", "D",
//!     "A|B|2",
//!     "C|B|11",
//!     "C|D|3",
//!     "B|D|2",
//! ];
//!
//! // Find shortest path using binary heap (default)
//! let (path, distance) = dijkstra::find_shortest_path(lines.clone())
//!     .expect("Failed to parse graph");
//!
//! assert_eq!(path, "A-B-D");
//! assert_eq!(distance, Some(4));
//! ```
//!
//! # Using Different Heap Implementations
//!
//! ```
//! use weighted_path::dijkstra;
//!
//! let lines = vec![
//!     "3", "A", "B", "C",
//!     "A|B|1", "B|C|2",
//! ];
//!
//! // Binary heap (default, good general-purpose choice)
//! let (path, distance) = dijkstra::find_shortest_path(lines.clone())?;
//!
//! // Fibonacci heap (faster for dense graphs)
//! let (path, distance) = dijkstra::find_shortest_path_fibonacci(lines.clone())?;
//!
//! // Pairing heap (often faster than Fibonacci in practice)
//! let (path, distance) = dijkstra::find_shortest_path_pairing(lines.clone())?;
//!
//! // Radix heap (excellent for integer weights)
//! let (path, distance) = dijkstra::find_shortest_path_radix(lines.clone())?;
//!
//! // Dial's algorithm (optimal for small integer weights)
//! let (path, distance) = dijkstra::find_shortest_path_dial(lines.clone())?;
//! # Ok::<(), String>(())
//! ```
//!
//! # Parsing and Using the Low-Level API
//!
//! ```
//! use weighted_path::dijkstra;
//!
//! // Start with graph in string format
//! let graph_str = "4
//! A
//! B
//! C
//! D
//! A|B|2
//! C|B|11
//! C|D|3
//! B|D|2";
//!
//! let lines: Vec<&str> = graph_str.lines().collect();
//!
//! // Parse the graph (bidirectional/undirected)
//! let parsed = dijkstra::parse_graph(&lines, true)
//!     .expect("Failed to parse graph");
//!
//! // Find shortest path from first node (index 0) to last node (index 3)
//! let (path_indices, distance) = dijkstra::dijkstra_binary(0, 3, &parsed.graph);
//!
//! // Convert path indices back to node names
//! let path_names: Vec<&str> = path_indices
//!     .iter()
//!     .map(|&idx| *parsed.nodes_reverse.get(&idx).unwrap())
//!     .collect();
//!
//! assert_eq!(path_names, vec!["A", "B", "D"]);
//! assert_eq!(distance, Some(4));
//! ```
//!
//! # Low-Level API with Pre-built Graph
//!
//! ```
//! use weighted_path::dijkstra;
//!
//! // Build adjacency list: graph[u] contains (v, weight) edges
//! let graph = vec![
//!     vec![(1, 2), (2, 5)],  // Node 0 -> Node 1 (weight 2), Node 0 -> Node 2 (weight 5)
//!     vec![(2, 1), (3, 3)],  // Node 1 -> Node 2 (weight 1), Node 1 -> Node 3 (weight 3)
//!     vec![(3, 2)],          // Node 2 -> Node 3 (weight 2)
//!     vec![],                 // Node 3 (no outgoing edges)
//! ];
//!
//! // Find shortest path from node 0 to node 3
//! let (path, distance) = dijkstra::dijkstra_binary(0, 3, &graph);
//!
//! assert_eq!(path, vec![0, 1, 3]);
//! assert_eq!(distance, Some(5));
//! ```
//!
//! # Directed Graphs
//!
//! ```
//! use weighted_path::dijkstra;
//!
//! let lines = vec![
//!     "3", "A", "B", "C",
//!     "A|B|1", "B|C|2",
//! ];
//!
//! // Process as directed graph (edges are one-way only)
//! let (path, distance) = dijkstra::find_shortest_path_directed(lines.clone(), false)?;
//!
//! // Process as undirected graph (edges are bidirectional)
//! let (path, distance) = dijkstra::find_shortest_path_directed(lines, true)?;
//! # Ok::<(), String>(())
//! ```

pub mod binary;
pub mod dial;
pub mod fib;
pub mod fib_unsafe;
mod heap_trait;
pub mod pairing;
pub mod radix;

use std::collections::HashMap;

use heap_trait::PriorityQueue;

pub use binary::dijkstra_binary;
pub use dial::dijkstra_dial;
pub use fib::dijkstra_fibonacci;
pub use fib_unsafe::dijkstra_fibonacci_unsafe;
pub use pairing::dijkstra_pairing;
pub use radix::dijkstra_radix;

/// Function type for Dijkstra implementations over an adjacency list.
///
/// Parameters:
/// * `start` - Index of the source node in the adjacency list.
/// * `end` - Index of the target node in the adjacency list.
/// * `graph` - Adjacency list where `graph[u]` contains `(v, weight)` edges.
///
/// Returns:
/// * `(path, distance)` where:
///   - `path` is a vector of node indices from `start` to `end` (inclusive),
///   - `distance` is the total shortest-path distance, or `None` if no path exists.
pub type DijkstraFn = fn(usize, usize, &[Vec<(usize, u32)>]) -> (Vec<usize>, Option<u32>);

/// Parsed graph representation used by both the main API and benchmarks.
pub struct ParsedGraph<'a> {
    /// Adjacency list: `graph[u]` contains `(v, weight)` edges.
    pub graph: Vec<Vec<(usize, u32)>>,
    /// Reverse mapping from node index to original node name.
    pub nodes_reverse: HashMap<usize, &'a str>,
}

/// Parse a weighted graph from lines into an adjacency list and reverse node map.
///
/// # Example
///
/// ```
/// use weighted_path::dijkstra;
///
/// let lines = vec![
///     "3",
///     "A", "B", "C",
///     "A|B|2",
///     "B|C|3",
/// ];
///
/// // Parse as undirected graph (bidirectional edges)
/// let parsed = dijkstra::parse_graph(&lines, true)?;
///
/// // Access the adjacency list
/// assert_eq!(parsed.graph[0], vec![(1, 2)]); // A -> B (weight 2)
/// assert_eq!(parsed.graph[1], vec![(0, 2), (2, 3)]); // B -> A (weight 2), B -> C (weight 3)
///
/// // Access node names by index
/// assert_eq!(parsed.nodes_reverse.get(&0), Some(&"A"));
/// assert_eq!(parsed.nodes_reverse.get(&1), Some(&"B"));
/// # Ok::<(), String>(())
/// ```
pub fn parse_graph<'a>(
    lines: &'a [&'a str],
    bidirectional: bool,
) -> Result<ParsedGraph<'a>, String> {
    if lines.is_empty() {
        return Err("No input lines provided".to_string());
    }

    // Number of nodes
    let num_nodes = lines[0].parse::<u32>().map_err(|_| {
        format!(
            "Invalid number of nodes: '{}' (expected a positive integer)",
            lines[0]
        )
    })? as usize;

    // Validate we have enough lines for node names
    if lines.len() < 1 + num_nodes {
        return Err(format!(
            "Not enough lines: expected {} node names, but only {} lines provided",
            num_nodes,
            lines.len().saturating_sub(1)
        ));
    }

    // Get the nodes
    let mut nodes = HashMap::new();
    let mut nodes_reverse = HashMap::new();
    let mut seen_nodes = std::collections::HashSet::new();

    for (i, &item) in lines.iter().enumerate().skip(1usize).take(num_nodes) {
        let node_name = item.trim();
        if node_name.is_empty() {
            return Err(format!("Empty node name at line {}", i + 1));
        }

        // Check for duplicate node names
        if !seen_nodes.insert(node_name) {
            return Err(format!("Duplicate node name: '{}'", node_name));
        }

        nodes.insert(node_name, i - 1); // node id map
        nodes_reverse.insert(i - 1, node_name); // node map
    }

    // Build the adjacency list: Vec<Vec<(neighbor_index, weight)>>
    let mut graph = vec![Vec::new(); num_nodes];

    for (line_num, line) in lines.iter().skip(1 + num_nodes).enumerate() {
        let line = line.trim();
        if line.is_empty() {
            continue; // Skip empty lines
        }

        // Split the line into node 1, node 2, and weight
        let parts: Vec<&str> = line.split('|').collect();

        if parts.len() != 3 {
            return Err(format!(
                "Invalid edge format at line {}: '{}' (expected format: node1|node2|weight)",
                line_num + 1 + num_nodes + 1,
                line
            ));
        }

        let node_1 = parts[0].trim();
        let node_2 = parts[1].trim();
        let weight_str = parts[2].trim();

        // Validate node names exist
        let node_1_index = nodes.get(node_1).ok_or_else(|| {
            format!(
                "Node '{}' in edge definition not found in node list",
                node_1
            )
        })?;
        let node_2_index = nodes.get(node_2).ok_or_else(|| {
            format!(
                "Node '{}' in edge definition not found in node list",
                node_2
            )
        })?;

        // Validate weight
        let weight = weight_str.parse::<u32>().map_err(|_| {
            format!(
                "Invalid weight '{}' in edge '{}|{}|{}' (expected a positive integer)",
                weight_str, node_1, node_2, weight_str
            )
        })?;

        // Check for self-loops
        if node_1_index == node_2_index {
            return Err(format!(
                "Self-loop detected: node '{}' connected to itself",
                node_1
            ));
        }

        // Add edge to adjacency list
        graph[*node_1_index].push((*node_2_index, weight));

        // If bidirectional is true, also add the reverse edge
        if bidirectional {
            graph[*node_2_index].push((*node_1_index, weight));
        }
    }

    Ok(ParsedGraph {
        graph,
        nodes_reverse,
    })
}

/// Core Dijkstra's algorithm implementation that works with any `PriorityQueue`.
///
/// This is the generic implementation that all specific heap variants use.
/// It handles both heaps that support `decrease_key` and those that don't.
///
/// For convenience, specific heap variants are available:
/// - `dijkstra_binary` - Binary heap
/// - `dijkstra_fibonacci` - Safe Fibonacci heap
/// - `dijkstra_fibonacci_unsafe` - Unsafe Fibonacci heap
/// - `dijkstra_pairing` - Pairing heap
/// - `dijkstra_radix` - Radix heap
///
/// # Example
///
/// ```
/// use weighted_path::dijkstra;
/// use weighted_path::radix::RadixHeap;
///
/// // Build adjacency list: graph[u] contains (v, weight) edges
/// let graph = vec![
///     vec![(1, 2), (2, 5)],  // Node 0 -> Node 1 (weight 2), Node 0 -> Node 2 (weight 5)
///     vec![(2, 1), (3, 3)],  // Node 1 -> Node 2 (weight 1), Node 1 -> Node 3 (weight 3)
///     vec![(3, 2)],          // Node 2 -> Node 3 (weight 2)
///     vec![],                 // Node 3 (no outgoing edges)
/// ];
///
/// // Use generic dijkstra with a RadixHeap
/// let mut heap = RadixHeap::new();
/// let (path, distance) = dijkstra::dijkstra(0, 3, &graph, heap);
///
/// assert_eq!(path, vec![0, 1, 3]);
/// assert_eq!(distance, Some(5));
/// ```
pub fn dijkstra<Q: PriorityQueue>(
    start: usize,
    end: usize,
    graph: &[Vec<(usize, u32)>],
    mut heap: Q,
) -> (Vec<usize>, Option<u32>) {
    let mut distances = vec![u32::MAX; graph.len()];
    distances[start] = 0;
    let mut previous = vec![None; graph.len()];

    // Check once if heap supports decrease_key (compile-time constant, but checked at runtime)
    let supports_decrease_key = heap.supports_decrease_key();

    // Track handles for decrease_key operations (only used if heap supports it)
    let mut handles: Vec<Option<Q::Handle>> = if supports_decrease_key {
        vec![None; graph.len()]
    } else {
        Vec::new() // Don't allocate if not needed
    };

    // Insert start node
    let handle = heap.insert(0, start);
    if supports_decrease_key {
        handles[start] = Some(handle);
    }

    while let Some((current_distance, current_node)) = heap.extract_min() {
        // Skip if we've already found a better path (duplicate entry)
        // This happens for heaps that don't support decrease_key (like BinaryHeap)
        if distances[current_node] < current_distance {
            continue;
        }

        // Early termination: if we've reached the target, we're done
        if current_node == end {
            break;
        }

        // Process neighbors
        for &(neighbor, weight) in &graph[current_node] {
            let new_distance = current_distance + weight;
            if new_distance < distances[neighbor] {
                distances[neighbor] = new_distance;
                previous[neighbor] = Some(current_node);

                // Use decrease_key if heap supports it and node is already in heap
                if supports_decrease_key {
                    if let Some(ref handle) = handles[neighbor] {
                        heap.decrease_key(handle, new_distance);
                    } else {
                        let handle = heap.insert(new_distance, neighbor);
                        handles[neighbor] = Some(handle);
                    }
                } else {
                    // For heaps without decrease_key (like BinaryHeap), always re-insert
                    // Duplicates will be filtered out by the check above
                    heap.insert(new_distance, neighbor);
                }
            }
        }
    }

    // Reconstruct path
    let mut path = Vec::new();
    let mut current = end;

    if distances[end] == u32::MAX {
        return (path, None); // No path found
    }

    while let Some(prev) = previous[current] {
        path.push(current);
        current = prev;
    }
    path.push(start);
    path.reverse();
    (path, Some(distances[end]))
}

fn find_shortest_path_with(
    lines: Vec<&str>,
    bidirectional: bool,
    dijkstra_impl: DijkstraFn,
) -> Result<(String, Option<u32>), String> {
    if lines.is_empty() {
        return Ok(("-1".to_string(), None));
    }

    let parsed = parse_graph(&lines, bidirectional)?;
    let num_nodes = parsed.graph.len();

    if num_nodes == 0 {
        return Ok(("-1".to_string(), None));
    }

    if num_nodes == 1 {
        return Ok((
            parsed
                .nodes_reverse
                .get(&0)
                .ok_or_else(|| "Internal error: single node not found in reverse map".to_string())?
                .to_string(),
            Some(0),
        ));
    }

    // Use the provided Dijkstra implementation
    let (path, distance) = dijkstra_impl(0, num_nodes - 1, &parsed.graph);

    if path.len() <= 1 {
        return Ok(("-1".to_string(), None));
    }

    // Map path node ids to nodes - optimised string building
    let mut path_parts = Vec::with_capacity(path.len());
    for node_id in path {
        let node = parsed.nodes_reverse.get(&node_id).ok_or_else(|| {
            format!(
                "Internal error: node ID {} not found in reverse map",
                node_id
            )
        })?;
        path_parts.push(*node);
    }
    Ok((path_parts.join("-"), distance))
}

/// Find the shortest path in a weighted graph using Dijkstra's algorithm.
///
/// This is a convenience function that treats the graph as undirected (bidirectional edges).
///
/// # Arguments
/// * `lines` - Graph definition lines (see README for format)
///
/// # Returns
/// * `(path, distance)` where:
///   - `path` is a vector of node indices from `start` to `end` (inclusive),
///   - `distance` is the total shortest-path distance, or `None` if no path exists.
/// * `Err(message)` - Error message if input is invalid.
pub fn find_shortest_path(lines: Vec<&str>) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, true, dijkstra_binary) // Default to undirected/bidirectional
}

/// Find the shortest path using the safe Fibonacci-heap Dijkstra implementation.
pub fn find_shortest_path_fibonacci(lines: Vec<&str>) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, true, dijkstra_fibonacci)
}

/// Find the shortest path using the unsafe (raw pointer) Fibonacci-heap Dijkstra implementation.
pub fn find_shortest_path_fibonacci_unsafe(
    lines: Vec<&str>,
) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, true, dijkstra_fibonacci_unsafe)
}

/// Find the shortest path using the Pairing-heap Dijkstra implementation.
pub fn find_shortest_path_pairing(lines: Vec<&str>) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, true, dijkstra_pairing)
}

/// Find the shortest path using the Radix-heap Dijkstra implementation.
pub fn find_shortest_path_radix(lines: Vec<&str>) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, true, dijkstra_radix)
}

/// Find the shortest path using Dial's algorithm (bucket-based Dijkstra).
pub fn find_shortest_path_dial(lines: Vec<&str>) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, true, dijkstra_dial)
}

#[allow(clippy::doc_overindented_list_items)]
/// Find the shortest path in a weighted graph with explicit control over edge directionality.
///
/// # Arguments
/// * `lines` - Graph definition lines (same format as `find_shortest_path`)
/// * `bidirectional` - If `true`, edges are made bidirectional (undirected graph).
///                     If `false`, edges are one-way only (directed graph).
///                     When `true`, if both A->B and B->A are specified, the last weight wins.
///
/// # Returns
/// * `(path, distance)` where:
///   - `path` is a vector of node indices from `start` to `end` (inclusive),
///   - `distance` is the total shortest-path distance, or `None` if no path exists.
/// * `Err(message)` - Error message if input is invalid.
pub fn find_shortest_path_directed(
    lines: Vec<&str>,
    bidirectional: bool,
) -> Result<(String, Option<u32>), String> {
    find_shortest_path_with(lines, bidirectional, dijkstra_binary)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_empty_input() {
        let result = find_shortest_path(vec![]);
        assert_eq!(result, Ok(("-1".to_string(), None)));
    }

    #[test]
    fn test_single_node() {
        let input = vec!["1", "A"];
        let result = find_shortest_path(input);
        assert_eq!(result, Ok(("A".to_string(), Some(0))));
    }

    #[test]
    fn test_two_nodes_connected() {
        let input = vec!["2", "A", "B", "A|B|5"];
        let result = find_shortest_path(input);
        assert_eq!(result, Ok(("A-B".to_string(), Some(5))));
    }

    #[test]
    fn test_two_nodes_disconnected() {
        let input = vec!["2", "A", "B"];
        let result = find_shortest_path(input);
        assert_eq!(result, Ok(("-1".to_string(), None)));
    }

    #[test]
    fn test_simple_path() {
        let input = vec!["3", "A", "B", "C", "A|B|2", "B|C|3"];
        let result = find_shortest_path(input);
        assert_eq!(result, Ok(("A-B-C".to_string(), Some(5))));
    }

    #[test]
    fn test_shortest_path_through_intermediate() {
        // Direct path A->D costs 100, but A->B->C->D costs 1+1+1=3
        let input = vec![
            "4", "A", "B", "C", "D", "A|B|1", "B|C|1", "C|D|1", "A|D|100",
        ];
        let result = find_shortest_path(input);
        assert_eq!(result, Ok(("A-B-C-D".to_string(), Some(3))));
    }

    #[test]
    fn test_invalid_node_count() {
        let input = vec!["abc"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Invalid number of nodes"));
    }

    #[test]
    fn test_not_enough_nodes() {
        let input = vec!["3", "A", "B"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Not enough lines"));
    }

    #[test]
    fn test_duplicate_node_names() {
        let input = vec!["2", "A", "A", "A|A|5"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Duplicate node name"));
    }

    #[test]
    fn test_invalid_edge_format() {
        let input = vec!["2", "A", "B", "A|B"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Invalid edge format"));
    }

    #[test]
    fn test_node_not_in_list() {
        let input = vec!["2", "A", "B", "A|C|5"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("not found in node list"));
    }

    #[test]
    fn test_invalid_weight() {
        let input = vec!["2", "A", "B", "A|B|abc"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Invalid weight"));
    }

    #[test]
    fn test_self_loop() {
        let input = vec!["2", "A", "B", "A|A|5"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Self-loop detected"));
    }

    #[test]
    fn test_empty_node_name() {
        let input = vec!["2", "", "B", "A|B|5"];
        let result = find_shortest_path(input);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Empty node name"));
    }

    #[test]
    fn test_zero_nodes() {
        let input = vec!["0"];
        let result = find_shortest_path(input);
        assert_eq!(result, Ok(("-1".to_string(), None)));
    }

    #[test]
    fn test_fibonacci_heap_simple() {
        // Test that Fibonacci heap version produces same results as binary heap
        let graph = vec![
            vec![(1, 2), (2, 4)], // node 0
            vec![(0, 2), (3, 1)], // node 1
            vec![(0, 4), (3, 5)], // node 2
            vec![(1, 1), (2, 5)], // node 3
        ];
        let (path_binary, dist_binary) = dijkstra_binary(0, 3, &graph);
        let (path_fib, dist_fib) = dijkstra_fibonacci(0, 3, &graph);
        assert_eq!(dist_binary, dist_fib);
        assert_eq!(path_binary, path_fib);
        assert_eq!(path_binary, vec![0, 1, 3]);
    }

    #[test]
    fn test_fibonacci_heap_comprehensive() {
        // Comprehensive test comparing both implementations on various graphs
        let test_cases = vec![
            // Simple path
            (
                vec![vec![(1, 1)], vec![(2, 1)], vec![]],
                0,
                2,
                vec![0, 1, 2],
            ),
            // Disconnected nodes
            (vec![vec![], vec![]], 0, 1, vec![]),
            // Single node
            (vec![vec![]], 0, 0, vec![0]),
            // Complex graph
            (
                vec![
                    vec![(1, 4), (2, 2)],          // node 0
                    vec![(2, 1), (3, 5)],          // node 1
                    vec![(1, 1), (3, 8), (4, 10)], // node 2
                    vec![(4, 2)],                  // node 3
                    vec![],                        // node 4
                ],
                0,
                4,
                vec![0, 2, 1, 3, 4],
            ),
            // Graph with multiple paths
            (
                vec![
                    vec![(1, 1), (2, 5)], // node 0
                    vec![(2, 1), (3, 2)], // node 1
                    vec![(3, 3)],         // node 2
                    vec![],               // node 3
                ],
                0,
                3,
                vec![0, 1, 3],
            ),
        ];

        for (graph, start, end, expected_path) in test_cases {
            let (path_binary, dist_binary) = dijkstra_binary(start, end, &graph);
            let (_path_fib, dist_fib) = dijkstra_fibonacci(start, end, &graph);

            assert_eq!(
                dist_binary, dist_fib,
                "Distance mismatch for graph: start={}, end={}, binary={:?}, fib={:?}",
                start, end, dist_binary, dist_fib
            );

            if !expected_path.is_empty() {
                assert_eq!(
                    path_binary, expected_path,
                    "Path doesn't match expected: got {:?}, expected {:?}",
                    path_binary, expected_path
                );
            }
        }
    }

    #[test]
    fn test_empty_lines_in_edges() {
        // Should skip empty lines in edge definitions
        let input = vec!["2", "A", "B", "A|B|5", "", "A|B|3"];
        let result = find_shortest_path(input);
        // Should work, but the last edge will overwrite the first
        assert_eq!(result, Ok(("A-B".to_string(), Some(3))));
    }

    #[test]
    fn test_valid_inputs_from_files() {
        use std::fs;
        use std::path::Path;

        let testdata_dir = Path::new("testdata");
        if !testdata_dir.exists() {
            return;
        }

        for i in 0..=18 {
            let input_file = testdata_dir.join(format!("input{}.txt", i));
            let output_file = testdata_dir.join(format!("output{}.txt", i));

            if !input_file.exists() || !output_file.exists() {
                continue;
            }

            let input_content = fs::read_to_string(&input_file)
                .unwrap_or_else(|_| panic!("Failed to read {:?}", input_file));
            let input_lines: Vec<&str> = input_content.lines().collect();

            let expected_output = fs::read_to_string(&output_file)
                .unwrap_or_else(|_| panic!("Failed to read {:?}", output_file))
                .trim()
                .to_string();

            let result = find_shortest_path(input_lines);

            match result {
                Ok((actual, _distance)) => {
                    assert_eq!(
                        actual, expected_output,
                        "Mismatch for input{}.txt: expected '{}', got '{}'",
                        i, expected_output, actual
                    );
                }
                Err(e) => {
                    panic!("input{}.txt should succeed but got error: {}", i, e);
                }
            }
        }
    }

    #[test]
    fn test_invalid_inputs_from_files() {
        use std::fs;
        use std::path::Path;

        let testdata_dir = Path::new("testdata");
        if !testdata_dir.exists() {
            return;
        }

        for i in 1..=6 {
            let input_file = testdata_dir.join(format!("invalid{}.txt", i));
            let error_file = testdata_dir.join(format!("error_invalid{}.txt", i));

            if !input_file.exists() || !error_file.exists() {
                continue;
            }

            let input_content = fs::read_to_string(&input_file)
                .unwrap_or_else(|_| panic!("Failed to read {:?}", input_file));
            let input_lines: Vec<&str> = input_content.lines().collect();

            let expected_error_full = fs::read_to_string(&error_file)
                .unwrap_or_else(|_| panic!("Failed to read {:?}", error_file))
                .trim()
                .to_string();

            let expected_error = expected_error_full
                .strip_prefix("Graph processing error: ")
                .unwrap_or(&expected_error_full)
                .to_string();

            let result = find_shortest_path(input_lines);

            match result {
                Ok(_) => {
                    panic!(
                        "invalid{}.txt should fail but succeeded. Expected error: {}",
                        i, expected_error
                    );
                }
                Err(actual_error) => {
                    assert_eq!(
                        actual_error, expected_error,
                        "Error message mismatch for invalid{}.txt:\n  Expected: {}\n  Got: {}",
                        i, expected_error, actual_error
                    );
                }
            }
        }
    }
}