Home
last modified time | relevance | path

Searched refs:adjList_ (Results 1 - 2 of 2) sorted by relevance

/foundation/distributeddatamgr/udmf/framework/common/
H A Dgraph.cpp24 adjList_.push_back({node, nullptr}); in Graph()
32 for (const auto &vertexNode : adjList_) { in ~Graph()
58 edge->next = adjList_[start].firstEdge; in AddEdge()
59 adjList_[start].firstEdge = edge; in AddEdge()
72 if (action(adjList_[startNode].value)) { in Dfs()
76 edge = adjList_[nodes.top()].firstEdge; in Dfs()
81 if (action(adjList_[edge->adjIndex].value)) { in Dfs()
84 edge = adjList_[edge->adjIndex].firstEdge; in Dfs()
H A Dgraph.h50 std::vector<VertexNode> adjList_; // Adjacency List member in OHOS::UDMF::Graph

Completed in 1 milliseconds