mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 00:43:04 +08:00
707_C代码语法错误
创建结构体语法有问题,中间有一个free没有分号
This commit is contained in:
@ -263,7 +263,6 @@ void myLinkedListFree(MyLinkedList* obj) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
||||||
* Your MyLinkedList struct will be instantiated and called as such:
|
* Your MyLinkedList struct will be instantiated and called as such:
|
||||||
* MyLinkedList* obj = myLinkedListCreate();
|
* MyLinkedList* obj = myLinkedListCreate();
|
||||||
* int param_1 = myLinkedListGet(obj, index);
|
* int param_1 = myLinkedListGet(obj, index);
|
||||||
@ -277,7 +276,7 @@ void myLinkedListFree(MyLinkedList* obj) {
|
|||||||
* myLinkedListDeleteAtIndex(obj, index);
|
* myLinkedListDeleteAtIndex(obj, index);
|
||||||
|
|
||||||
* myLinkedListFree(obj);
|
* myLinkedListFree(obj);
|
||||||
*/
|
*/
|
||||||
```
|
```
|
||||||
|
|
||||||
Java:
|
Java:
|
||||||
|
Reference in New Issue
Block a user