This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Üye Ol
Giriş Yap
wolves
/
leetcode
şunun yansıması
https://git.wolves.top/wolves/leetcode.git
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Wiki
Ağaç:
affa209d93
Dallar
Biçim İmleri
main
leetcode
/
else
/
structs
/
List.h
List.h
108 B
Geçmiş
Ham
1
2
3
4
5
6
7
8
#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h