[
{source: "001", target: "002", weight: 10},
{source: "001", target: "003", weight: 15},
{source: "002", target: "004", weight: 12},
{source: "004", target: "005", weight: 10},
....
]
convert to
[
{
id: "001",
children: [
{
id: "002",
weight: 10,
children: [
{
id: "004",
weight: 12,
children: [
{
id: "005",
weight: 10
}
]
}
]
},
{
id: "003",
weight: 15,
children: []
}
]
}
]