This website works better with JavaScript
صفحهٔ اصلی
گشتوگذار
راهنما
ثبت نام
ورود
wolves
/
leetcode
mirrorاز
https://git.wolves.top/wolves/leetcode.git
دنبال کردن
1
ستاره دار
0
انشعاب
0
پروندهها
مشکلات
0
ویکی
درخت:
3f58f483ff
شاخهها
تگها
main
leetcode
/
else
/
structs
/
List.h
List.h
108 B
تاريخچه
خام
1
2
3
4
5
6
7
8
#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h