การ insert ข้อมูลด้านหน้าสุดของ doubly linked list เงื่อนไขข้อใดถูกต้อง (doubly linked list มีข้อมูลอยู่แล้ว)
Linked list

Quiz
•
Computers
•
University
•
Hard
noi pc
Used 3+ times
FREE Resource
5 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
if(data > head->value)
if(data < head->value)
if(data < head->prev)
if(data > head->prev)
2.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
การเชื่อมข้อมูลต่อท้าย doubly linked โดยกำหนดว่าข้อมูลใหม่มี node เก็บตำแหน่งของข้อมูลใหม่อยู่ ข้อใดถูก
tail->next->prev=node;
node->prev=tail;
tail->prev=node;
node->next=tail;
tail->next=node;
node->prev=tail;
tail->next=node;
node->next=tail;
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
ต้องการนับจำนวน node ใน linked list ข้อใดถูก
count=0;
p=head;
while(p!=NULL)
{ count++;
p=p->next;
}
count=0;
p=head;
while(p->next!=NULL)
{ count++;
p=p->next;
}
count=0;
p=head;
while(p->next->value!=NULL)
{ count++;
p=p->next;
}
count=0;
p=head;
while(p==NULL)
{ count++;
p=p->next;
}
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
ต้องการสร้าง structure เพื่อเก็บ polynomial เช่นเดียวกับการบ้าน ข้อใดถูก
struct record
{ int value;
struct record con;
struct record pow;
};
struct record
{ int value;
struct record *con;
struct record *pow;
};
struct record
{
struct record con;
int value;
struct record pow;
};
มีข้อถูกมากกว่า 1 ข้อ
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
ถ้า head ชี้ linked list โหนดแรก หากต้องการให้ head เลื่อนไปชี้โหนดลำดับที่ 3 ข้อใดถูก
head=head->next;
head=head->next->next;
head=head->next;
head=head->next;
มีข้อถูกมากกว่า 1 ข้อ
Similar Resources on Quizizz
8 questions
Linked List MCQ

Quiz
•
University
10 questions
Technical Quiz DSA

Quiz
•
University
9 questions
HTML Basics

Quiz
•
9th Grade - Professio...
10 questions
Linked Lists

Quiz
•
University
10 questions
2025_DSA_LinkedList

Quiz
•
University
10 questions
ADS_2022-23

Quiz
•
University
10 questions
Data Structure Chapter 4 : Linked List

Quiz
•
University
10 questions
DS Quiz-1

Quiz
•
KG - University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade