CS 225 Data Structures Ja January 22 In Introduction G G Carl - - PowerPoint PPT Presentation

cs 225
SMART_READER_LITE
LIVE PREVIEW

CS 225 Data Structures Ja January 22 In Introduction G G Carl - - PowerPoint PPT Presentation

CS 225 Data Structures Ja January 22 In Introduction G G Carl Ev Evans and Jing Jiang In Intr troductio ction G Carl Evans CS PhD Academic Interests : parallel and compilers, systems programming, education, and magic fairy dust


slide-1
SLIDE 1

CS 225

Data Structures

Ja January 22 – In Introduction

G G Carl Ev Evans and Jing Jiang

slide-2
SLIDE 2

In Intr troductio ction

G Carl Evans – CS PhD

Academic Interests: parallel and compilers, systems programming, education, and magic fairy dust

Jing Jiang – ECE PhD

Academic Interests: Education, entrepreneurship, biosensor and system integration

Thierry Ramais – Course Administrator – English PhD Course Staff: You:

slide-3
SLIDE 3

G G Car arl Evan ans

i = 0 LD B[i] LD C[i] B[i] + C[i] ST A[i] i++ LD B[i] LD C[i] ST A[i] ... B[i] + C[i]
slide-4
SLIDE 4

Ji Jing ng Ji Jiang ng

slide-5
SLIDE 5

Thierry Ramais

slide-6
SLIDE 6

Cou Course St Staff

slide-7
SLIDE 7

Yo You

slide-8
SLIDE 8

CS 126 ECE 220 CS 125 CS 225 CS 173 MATH 213 INFO 490 (+others)

slide-9
SLIDE 9

Ev Everything about CS 225

https://courses.engr.illinois.edu/cs225/ Information on: Staff Communications Lab Sections MPs Quizes Grading Academic Integrity

slide-10
SLIDE 10

What is this course about?

slide-11
SLIDE 11
slide-12
SLIDE 12

Va Variables in C++

int myFavoriteInt; char grade = 'A'; double gamma = 0.653; Cat guinevere, baxter; Cube rubix; Person carl;

slide-13
SLIDE 13

Enc Encapsul sulation

slide-14
SLIDE 14

Enc Encapsul sulation

Cube.h Cube.cpp

slide-15
SLIDE 15

#pragma once class Cube { public: private: };

Cube.h

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

slide-16
SLIDE 16

#include "Cube.h" double Cube::getVolume() { }

Cube.cpp

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Cube { public: double getVolume(); 4 5 6

Cube.h