mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-10 06:05:35 +08:00
Add the initial EN translation for C++ code (#1346)
This commit is contained in:
@@ -11,7 +11,7 @@ import java.util.*;
|
||||
/* Double-linked list node */
|
||||
class ListNode {
|
||||
int val; // Node value
|
||||
ListNode next; // Reference to the next node
|
||||
ListNode next; // Reference to successor node
|
||||
ListNode prev; // Reference to predecessor node
|
||||
|
||||
ListNode(int val) {
|
||||
|
||||
Reference in New Issue
Block a user