We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b573a commit aedda87Copy full SHA for aedda87
problems/0707.设计链表.md
@@ -282,12 +282,12 @@ Java:
282
```Java
283
//单链表
284
class ListNode {
285
-int val;
286
-ListNode next;
287
-ListNode(){}
288
-ListNode(int val) {
289
-this.val=val;
290
-}
+ int val;
+ ListNode next;
+ ListNode(){}
+ ListNode(int val) {
+ this.val=val;
+ }
291
}
292
class MyLinkedList {
293
//size存储链表元素的个数
0 commit comments