SlideShare a Scribd company logo
This is CS50
CS50 IDE
check50
debug50
help50
printf
style50
valgrind
ddb50
CS50 Lecture4
string
char *
CS50 Lecture4
CS50 Lecture4
CS50 Lecture4
CS50 Lecture4
void swap(int a, int b)
{
int tmp = a;
a = b;
b = tmp;
}
void swap(int *a, int *b)
{
int tmp = *a;
*a = *b;
*b = tmp;
}
CS50 Lecture4
CS50 Lecture4
int main(void)
{
int *x;
int *y;
x = malloc(sizeof(int));
*x = 42;
*y = 13;
y = x;
*y = 13;
}
struct
CS50 Lecture4
CS50 Lecture4
CS50 Lecture4
array
linked list
tree
hash table
trie
https://cs.calvin.edu/activities/books/c++/ds/1e/
https://cs.calvin.edu/activities/books/c++/ds/1e/
string name;
string dorm;
typedef struct
{
string name;
string dorm;
}
student;
int n;
typedef struct node
{
int n;
}
node;
typedef struct node
{
int n;
node *next;
}
node;
typedef struct node
{
int n;
struct node *next;
}
node;
CS50 Lecture4
https://cs.calvin.edu/activities/books/c++/ds/1e/
int n;
typedef struct node
{
int n;
}
node;
typedef struct node
{
int n;
struct node *left;
struct node *right;
}
node;
bool search(int n, node *tree)
{
if (tree == NULL)
{
return false;
}
else if (n < tree->n)
{
return search(n, tree->left);
}
else if (n > tree->n)
{
return search(n, tree->right);
}
else
{
return true;
}
}
Figure from Lewis and Denenberg’s Data Structures & Their Algorithms.
This is CS50

More Related Content

What's hot (20)

DOC
Lab 6
alish sha
 
PDF
2. Базовый синтаксис Java
DEVTYPE
 
PPTX
Ast 09
ClarkTony
 
PDF
Introduction to Computer and Programing - Lecture 04
hassaanciit
 
PDF
Understanding storage class using nm
mohamed sikander
 
PPTX
C Programming Language Part 8
Rumman Ansari
 
PPTX
Function basics
mohamed sikander
 
PDF
SATySFiのこれからの課題たち
T. Suwa
 
PPT
Intro to c programming
Prabhu Govind
 
PDF
C++ Programming - 11th Study
Chris Ohk
 
PDF
Lec14-CS110 Computational Engineering
Sri Harsha Pamu
 
PDF
Haxe vs Unicode (en)
Ryusei Yamaguchi
 
PPTX
#OOP_D_ITS - 3rd - Pointer And References
Hadziq Fabroyir
 
PPTX
Function recap
alish sha
 
PDF
Inheritance and polymorphism
mohamed sikander
 
PDF
please sir i want to comments of every code what i do in eachline . in this w...
hwbloom27
 
PPTX
Wcbpijwbpij new
Hanokh Aloni
 
DOCX
Concatenation of two strings using class in c++
Swarup Boro
 
PPT
Pointers in c
guestb811fb
 
PDF
Bcsl 033 data and file structures lab s2-3
Dr. Loganathan R
 
Lab 6
alish sha
 
2. Базовый синтаксис Java
DEVTYPE
 
Ast 09
ClarkTony
 
Introduction to Computer and Programing - Lecture 04
hassaanciit
 
Understanding storage class using nm
mohamed sikander
 
C Programming Language Part 8
Rumman Ansari
 
Function basics
mohamed sikander
 
SATySFiのこれからの課題たち
T. Suwa
 
Intro to c programming
Prabhu Govind
 
C++ Programming - 11th Study
Chris Ohk
 
Lec14-CS110 Computational Engineering
Sri Harsha Pamu
 
Haxe vs Unicode (en)
Ryusei Yamaguchi
 
#OOP_D_ITS - 3rd - Pointer And References
Hadziq Fabroyir
 
Function recap
alish sha
 
Inheritance and polymorphism
mohamed sikander
 
please sir i want to comments of every code what i do in eachline . in this w...
hwbloom27
 
Wcbpijwbpij new
Hanokh Aloni
 
Concatenation of two strings using class in c++
Swarup Boro
 
Pointers in c
guestb811fb
 
Bcsl 033 data and file structures lab s2-3
Dr. Loganathan R
 

Similar to CS50 Lecture4 (20)

PDF
Data Structures Mastery: Sample Paper for Practice"
SaniyaGijoni
 
PDF
08DsAlg.pdf
yasiriqbal946264
 
PDF
Data structures
Naresh Babu Merugu
 
PDF
Data and File Structure Lecture Notes
FellowBuddy.com
 
PDF
C for Java programmers (part 3)
Dmitry Zinoviev
 
PDF
Data structures-sample-programs
Rajula Gurva Reddy
 
PPT
linkedlist (1).ppt
SwarChaudhary
 
PPTX
Introduction to Data Structure
chouguleamruta24
 
PDF
Data Structure and its Fundamentals
Hitesh Mohapatra
 
PPT
Introduction to structures in c lang.ppt
shivani366010
 
PPT
structures.ppt
RamyaR163211
 
PPTX
Data Structure & aaplications_Module-1.pptx
GIRISHKUMARBC1
 
PPT
Introduction to Data structures and Trees.ppt
Vivekananda Gn
 
PPT
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
iamsallauddin
 
PPT
Wk11-linkedlist.ppt
MrsSHEEBAM
 
PPT
linkedlistqwerwwdderdsddsseddddddsdrr.ppt
bgmi52926
 
PPT
Wk11-linkedlist.ppt
duraimurugan alagarsamy
 
PPTX
Data Structures - Unit 1 linked list
RajeswariA8
 
PPTX
Data structures
MADHAVASAIYENDUVA
 
Data Structures Mastery: Sample Paper for Practice"
SaniyaGijoni
 
08DsAlg.pdf
yasiriqbal946264
 
Data structures
Naresh Babu Merugu
 
Data and File Structure Lecture Notes
FellowBuddy.com
 
C for Java programmers (part 3)
Dmitry Zinoviev
 
Data structures-sample-programs
Rajula Gurva Reddy
 
linkedlist (1).ppt
SwarChaudhary
 
Introduction to Data Structure
chouguleamruta24
 
Data Structure and its Fundamentals
Hitesh Mohapatra
 
Introduction to structures in c lang.ppt
shivani366010
 
structures.ppt
RamyaR163211
 
Data Structure & aaplications_Module-1.pptx
GIRISHKUMARBC1
 
Introduction to Data structures and Trees.ppt
Vivekananda Gn
 
Lecture 1 IntroductionToDataStructures_coursematerial_Draft0.01.ppt
iamsallauddin
 
Wk11-linkedlist.ppt
MrsSHEEBAM
 
linkedlistqwerwwdderdsddsseddddddsdrr.ppt
bgmi52926
 
Wk11-linkedlist.ppt
duraimurugan alagarsamy
 
Data Structures - Unit 1 linked list
RajeswariA8
 
Data structures
MADHAVASAIYENDUVA
 
Ad

More from 昀 李 (6)

PDF
TTA Bootcamp
昀 李
 
PDF
為自己學 Git
昀 李
 
PDF
CS50 Lecture5
昀 李
 
PDF
CS50 Lecture3
昀 李
 
PDF
CS50 Lecture2
昀 李
 
PDF
CS50 Lecture1
昀 李
 
TTA Bootcamp
昀 李
 
為自己學 Git
昀 李
 
CS50 Lecture5
昀 李
 
CS50 Lecture3
昀 李
 
CS50 Lecture2
昀 李
 
CS50 Lecture1
昀 李
 
Ad

Recently uploaded (20)

PDF
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
PDF
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
PDF
Revenue streams of the Wazirx clone script.pdf
aaronjeffray
 
PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PDF
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PPTX
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
Human Resources Information System (HRIS)
Amity University, Patna
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
Revenue streams of the Wazirx clone script.pdf
aaronjeffray
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Human Resources Information System (HRIS)
Amity University, Patna
 

CS50 Lecture4