ผลต่างระหว่างรุ่นของ "Psl/ลิงก์ลิสต์"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
แถว 3: แถว 3:
 
== โหนด ==
 
== โหนด ==
  
<syntaxhighlight lang="c++">
+
<syntaxhighlight lang="cpp">
 
struct ListNode {
 
struct ListNode {
 
   int value;
 
   int value;

รุ่นแก้ไขเมื่อ 23:28, 25 มกราคม 2558

หน้านี้เป็นส่วนหนึ่งของ problem solving lab

โหนด

struct ListNode {
  int value;
  ListNode* next;
};

กิจกรรม