Download presentation
Presentation is loading. Please wait.
Published byEthelbert Harper Modified over 9 years ago
1
Introduction to Programming Initial Slides developed by Dr. Doman
2
A deep understanding of programming, in particular the notions of successive decomposition as a mode of analysis and debugging of trial solutions, results in significant educational benefits in many domains of discourse, including those unrelated to computers and information technology per se. (Seymour Papert, in "Mindstorms") What is programming?
3
Programming is a creative process done by programmers to instruct a computer on how to do a task. (http://cplus.about.com)http://cplus.about.com Writing an original program that performs a particular task that meets all stated constraints (Think Like a Programmer, V.Anton Spraul, No Starch Press, Inc. 2012) What is programming?
4
The major resource for this information is the book Think Like a Programmer, By V.Anton Spraul, No Starch Press, Inc. 2012 What is programming?
5
Method or interface to do this: PROGRAMMING LANGUAGES Example: Java: Public class helloWorld { Public static void main ( ) { system.out.println(“Hello World”) } } Instruct a computer
6
Example: C++ #include using namespace std; int main() { cout << “Hello World” << endl; } Instruct a computer
7
Example: html Hello World Instruct a computer
8
GAMEMAKER Drag and drop structured language Uses icons, text…. Made to be easier than any of the previous languages. Easily used by non-programmers. Instruct a computer
9
Programming is a creative process done by programmers to instruct a computer on how to do a task. (http://cplus.about.com)http://cplus.about.com Writing an original program that performs a particular task that meets all stated constraints (Think Like a Programmer, V.Anton Spraul, No Starch Press, Inc. 2012) What is programming?
10
Puzzles Problem solving What is programming? Programming Involves
11
Your car has blue smoke coming from the tailpipe, is idling roughly and has lost fuel efficiency. How do you solve this puzzle? Problem Solving
12
Unbreakable rules about problems or the way in which problems must be solved. Car problem constraints: Maximum amount you can pay for repair Time you can wait before you need it fixed Can not require new tools to be purchased Constraints
13
Must use a particular programming language (Java, C++) Specific Platform (Windows, Mac), (IPad, Nexus) Have a certain performance/speed (page refresh in 1.5 seconds) Amount of memory the program uses while running, memory footprint User/customer specific constraints Design constraints Common Programming Constraints
14
Figure out the steps needed to solve the problem Be able to list the steps Be able to repeat the steps You can NOT change the rules (constraints) to get something solved! Problem solving
15
P ROBLEM : H OW TO CROSS THE RIVER ? A farmer with a fox, a goose and a sack of corn needs to cross a river. The farmer has a rowboat, but there is only room for the farmer and one of his three items. Unfortunately, both the fox and the goose are hungry. The fox cannot be left alone with the goose; the goose cannot be left alone with the grain. How does the farmer get everything across the river? Puzzle: Fox, goose, grain
16
Constraints Only one item at a time in the boat Can’t leave fox with goose Can’t leave goose with grain Operations Carry the fox to the far side of the river Carry the goose to the far side of the river Carry the grain to the far side of the river Puzzle: Fox, goose, grain
18
Abstract the problem Be more general in describing the way we will solve the problem Concept: Variable Items are fox, goose or grain Let item vary between fox, goose or grain Rephrase the problem
19
Constraints Only one item at a time in the boat Can’t leave fox with goose Can’t leave goose with grain Operations Row the boat from one shore to the other If the boat is empty, load an item on the boat If the boat is full, take the item off the boat Puzzle: Fox, goose, grain
21
Puzzle: Sudoku 347 81 625 5 8 47 1 9 73 347 891 625
22
P ROBLEM : T HE SLIDING EIGHT A 3x3 grid is filled with eight tiles, numbered 1 through 8 with one empty space. The grid is jumbled. A tile can be slid into an adjacent empty space, leaving its previous location empty. Slide the tiles so that they are in numerical order Puzzle: Sliding Tile
23
123 456 78 Puzzle: Sliding Tile Solution
24
472 861 35 Puzzle: Sliding Tile
25
Technique: the train A circuit of tile positions that include an empty slot forms a train of tiles that can be rotated anywhere along the circuit, preserving the relative order of the tiles. Puzzle: Sliding Tile
26
1 23 21 3 32 1 3 12
27
Look at the problem in subsets P ROBLEM : T HE SLIDING FIVE Puzzle: Sliding Tile 68 547
28
68 547 568 47 456 7 8
29
Use this technique to generalize the solution to any sliding puzzle….. Puzzle: Sliding tile 472 861 35
30
Use this technique to generalize the solution to any sliding puzzle….. Puzzle: Sliding tile 472 861 35
31
Use this technique to generalize the solution to any sliding puzzle….. Puzzle: Sliding tile 456 81 327
32
Use this technique to generalize the solution to any sliding puzzle….. Puzzle: Sliding tile 456 81 327
33
Use this technique to generalize the solution to any sliding puzzle….. Puzzle: Sliding tile 1 23 68 547
34
Use this technique to generalize the solution to any sliding puzzle….. Puzzle: Sliding tile 1 23 68 547
35
Problem Solving Have a plan Generalize the problem Restate the problem Start with what you know Divide the problem Look for analogies or patterns Experiment!!! THINK like a programmer!
36
Creation of Software
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.