[闲聊] 去你的哩扣

楼主: chingchong77 (青葱)   2023-07-17 18:45:21
133. Clone Graph
Given a reference of a node in a connected undirected graph.
Return a deep copy (clone) of the graph.
Each node in the graph contains a value (int) and a list (List (Node]) of its ne
ighbors.
class Node {
public int val;
public List<Node> neighbors;}
Test case format:
For simplicity, each node's value is the same as the node's index (1-indexed. Fo
r example, the first node with val = 1, the second node
with val == 2, and so on. The graph is represented in the test case using an adj
acency list.
An adjacency list is a collection of unordered lists used to represent a finite
graph. Each list describes the set of neighbors of a node in the graph
The given node will always be the first node with val = 1. You must return the c
opy of the given node as a reference to the cloned graph.
吐了
想说怎么可能连case 2都过不了
结果发现这一题它给的点只要被改到
就不给过
妈的
第一次遇到这种事
把我的时间还我

Links booklink

Contact Us: admin [ a t ] ucptt.com