Friday, May 22, 2015

Teaching AP CompSci: Lab07 + Lab18 Arrays and Recursion! April + May 2015 (LAST POST)

Teaching AP CompSci:
Lab07 +Lab18
Arrays and Recursion!
April + May 2015
(LAST POST)

This is our last post of the year! To paraphrase those Car Talk guys on NPR, "Well, now you've done it again! You've wasted another perfectly good school year with me at ShadowfaxRant on BlogSpot as well as CalcPage2009 on YouTube!"

We finished the year with Recursion and AP Review. We wrote our own version of Math.java where all the methods were static and recursive! For example: power() factorial(), fibonacci(), pascal(), etc.



Please see the ScreenCasts below regarding 1D and 2D static arrays that I did not get to record until now! Roman 1.0 uses a private instance field of type int to represent the Roman Numeral as an integer making addition and subtraction easy. Roman 2.0 adds a 1D static int array to represent the digits so as to make it easy for toString() to accommodate more digits! Roman 3.0 refactors the code again introducing a 2D static String array as a look up table (shown above). 


The inspiration for this lab is pictured above. This is a picture of my neighbor's mailbox. Let's just say his street address is supposed to be 226 such and such lane and he thought it would be cute to write his address in Roman Numerals! Unfortunately he put a 2 instead of a 200 in the third place, a 2 instead of a 20 in the second place and a 6 in the first place. At least he got one digit right! The problem, you see, is that the Roman Number system was not positional unlike the Arabic System we use today! My neighbor should have written CC XX VI=200+20+6, not II II VI=2+2+6. BTW, "iv, xl, cd," etc was an invention of medieval monks who were too lasy to write "iiii, xxxx, cccc," etc.

I cover these labs before Chess960 which mixes in ArrayLists. Next year, I need to add some ScreenCasts on CH10 Inheritance, CH11 Polymorphism and CH19 Searching/Sorting Algorithms. This year, I think we got across the point that Inheritance is taken care of during Early Binding or javac time. Next year, however, I have to find some labs that show Polymorphism working on the fly during Late Binding or java time. 

Fare thee well AP CompSci class of 2014-2015! You will be missed. I hope you go on to fulfill your dreams! Each and every one of you has the potential for greatness. Don't let anyone tell you different and don't settle for less in yourself. Most people are just like lemmings, all they do is follow the leader. Why be a follower when you can be a leader? You can be a leader in your school, your place of worship, your community, your office, your profession, your field. Don't be a lemming just complaining about your lot in life or flaws in the system at large without trying to fix it yourself. You can effect change for the greater good! Life is short and time is precious. Don't let a day go by where you don't make the most of your talents and contribute something to society. You are the true dreamers, and dreams accomplish wonderful things! I won't say goodbye, let me just say: Until we meet again. For now, I'll say: Good night and don't let the Zerlings bite!


NB01: I may start a new YouTube PlayList for Life After CompSci 2015 (LACS2015) before long. We didn't have a chance to do justice to the new College Board APCS Labs this year. So, we're returning to the Magpie, Picture and Elevens Labs. We will review each lab and figure out where it fits in the school year so I can use them next year. I'll make a playlist of our findings!

NB02: Sorry I haven't been able to update the blog much these past few weeks. I've been dealing with some medical issues that have made it hard to write: aka grade and type. I've been saving my hand for grading tests and writing finals. As a result, next year I will probably be cutting back to one or two posts per month per course blog.

YOUTUBE WEDNESDAYS: 
All of April: Cliff Stoll's Cuckoo's Egg!
There will be no more YouTube Wednesdays during May and June as we have our AP Gaming Tournament (BZFlag, Tremulous, OpenArena, StarCraft, Xonotic, etc.) every other day with LACS2015 in between.... 

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.






Teaching AP CompSci:
Lab 07
Quarter III Weeks 7-10 ArrayLists!
03/23/15-04/10/15
The Chess960 project mixes Static Arrays and ArrayLists in one project. Currently, we are working on a new project to using 1D and 2D Static Arrays to represent Roman Numerals. I'll post those videos in the next blog post.

Another project related to arrays that we did last year instead of Roman that you may find interesting and instructive is CHess960! It has a an element of randomness and Monte Carlo Simulations in it, but its mostly about static arrays vs ArrayLists as well as 1D vs 2D arrays. What we did was generate all 960 possible starting chess game positions in Fischer Chess!

Bobby Fischer was the last American World Chess Champion and also the youngest World Champ. One day, he got tired of playing the same chess openings over and over again. So, he figured out a way to vary the way you set up the chess board before starting a game in such a way as not to affect other rules of the game and still afford easy game play.

Why is it called Chess960? Well, that's because there's:
4 ways to place a dark-square bishop
4 ways to place a light-square bishop
6 ways to place the Queen
5 ways to place Knight #1
4 ways to place Knight #2
and 1 way to place the remaining Rook-King-Rook combination.
By the counting principle, that's 4x4x6x5x4x1=1920 different boards, right? So why the 960?? Watch the screencasts below and you'll see!!!

By the time we were done, in version 2.0 of Chess960.java, we had an ArrayList with 960 randomly generated entries each of type String[8]! This data structure is therefore a 2D array (an array with arrays as elements) with 7680 single character Strings, in other words 15360 Bytes of data in one variable! Remember, the char primitive type uses 1 byte of data to represent each character in the ASCII code. However, the String class uses 2 Bytes of data to represent each character of UNICODE.

We also wrote a separate program, ChessGame.java, where we could set up a 2D static String[8][8] array to represent any random board we wanted. Then we could also play the game by moving pieces around the board. This is a very simple chess board program that does not check for legal moves and assumes that if you move a piece into an occupied square that you are capturing and removing the piece in that square! ChessGame does not allow for castling or for en-passant moves either.

Last year, after figuring out these 3 programs, we all got the chess.com app on our phones (chess.com was blocked on the school PCs) and played a Chess960 Tournament in class! I'm a US Chess Federation Local Tournament Director, so we ran the tourney according to World Championship, aka FIDE, regulations! I'm also a US Chess Federation Certified Coach and USCF rated player.

YOUTUBE WEDNESDAYS: 
All of March, Vi Hart Channel and PI Day: 

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.




Teaching AP CompSci:
Lab 07
Quarter III Weeks 3-6 ArrayLists!
02/23/15-03/20/15
These past 4 weeks have been devoted to ArrayLists continuing what we started in CH08 and Lab07. Recently, we also have started working with static arrays. The ScreenCasts below areprimarily about ArrayLists. 

YOUTUBE WEDNESDAYS: 
All of March, Vi Hart Channel and PI Day: 

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.










Teaching AP CompSci:
Lab 07
Quarter III Weeks 1-2 Arrays!
02/02/15-02/13/15
The first 2 weeks of Quarter III, before February Break, we finished Lab06 on Loops and started Lab07 on Arrays! After Lab07, I think it's finally time for the infamous New APCS Labs! We'll do Magpie, before we get to Recursion, Searches and Sorts. After break, we have a bit over 5 weeks, mostly in March, before April Break. So, we have to pour on the steam and get most of the rest of the course done before we start reviewing for the AP Exam! 

We should be able to do the Picture Lab as well. I don't know about the Elevens Lab. I'm hoping to cover Inheritance and Polymorphism using these labs like we used to with GridWorld. I covered a bit on Interfaces, Inheritance and Polymorphism by writing toString(), equals() and compareTo() methods in several of our labs already. We've been talking about the Pilars of OOP for some time now:

Pilars of OOP
0) Write Self Documenting Code
0) Make use of Re-Usable Code
1) Abstraction
2) Encapsulation
3) Inheritance
4) Polymorphism
(the first 2 were added by me)

BTW, we've been reviewing for the AP Exam a bit with biweekly TakeHome Tuesdays. These take home exams focus on the Lab at hand but are great FRQ practice.

YOUTUBE WEDNESDAYS: 
All of February, 15 min/week: 

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.




Teaching AP CompSci:
Lab 06
Quarter II Weeks 7-10 Iteration!
01/05/15-01/30/15
This post is mostly about weeks 7&8. Week 9 was all about review for MidTerms and in-class Midterms. Week 10 was for formal Midterms and NYS Regents Exams so we had no classes! During Weeks 7&8 we covered LAB 6 all about for loops and while loops (see below). We'll leave for each loops for the next lab on static arrays and ArrayLists. 

BTW, you may have noticed that I changed my plan for this year. I went back to basics instead of doing a lot of my own case studies now that GridWorld is gone. I'm going to start the new labs with Magpie after Lab 7 on arrays. I really want to have Labs 1-7 under our wings before starting Magpie. Magpie looks deceptively simple! However, it does include objects, conditionals, loops and arrays. Magpie is not just about Strings after all!

YOUTUBE WEDNESDAYS: 
Week7: Phil Plait and Apophos
Week8: Michio Kaku and Extinction
Week9: Carl Sagan's "Pale Blue Dot"

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.






Teaching AP CompSci:
Lab 05
Quarter II Weeks 4&6 Conditionals!
12/01/14-12/19/14
OK, you can't make me blog about Week 3 (11/24-11/28) since it was a 2 day week right before Thanksgiving Break. Monday we had tests and Tuesday was a make up day. Actually, Monday was also a make up lab day for APCS.

Also, I'm not blogging about Week 5 (12/08-12/12) since I focused on telling the whole school about the #HourOfCode! So, my regular classes just had a lot of review sheets.

Finally, I'm not blogging about Week 7 (12/22-12/26) since it's also a 2 day week before XMas Break! Monday we have tests and Tuesday is preCalculus and Calculus Carols plus a game day in APCS. Monday is also a make up day for APCS.

So, what am I blogging about? Well, I'll let the YouTube ScreenCasts speak for themselves. Suffice it to say that we completed all of LAB05 about Conditional or Branching Statements, Boolean Expressions and Predicate Methods!

So, now I'm torn. After break, Week 8 (01/05/15-01/09/15), shall we start NEW APCS LAB Magpie or continue to LAB06 about Iteration? This is the time of year I used to start GridWorld.

BTW, if you've been following this blog post from the beginning of the year, you surely will have noticed that I completely shelved all my own case studies and graphics projects. Why is that? Well, I'm afraid we won't have time for all the NEW APCS LABS (Magpie, Picture and Elevens) as well as AP Review and all the basic labs we've been doing otherwise. Sorry, I think we'll play with my case studies after the AP Exam for fun....

YOUTUBE WEDNESDAYS: 
Week4: #HourOfCode!
Week6: preCalc and Calculus Carols!

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.








Teaching AP CompSci:
Lab 04
Quarter II Weeks 1&2 Data Types!
11/10/14-11/21/14
Yeah, Quarter II has begun! Over the past 2 weeks we completed Lab 04. This lab was primarily about data types. We talked about the differences between byte, int, long, float and double. We also worked with different forms of input: args, JOptionPane and Scanner. We played with finals and casting. We even used Integer.parseInt() and Double.parseDouble().

YOUTUBE WEDNESDAYS: 
Since we're doing Conic Sections and Planet Orbits in preCalculus, it's time for our Astronomy related YouTubes! We had 2 guest speakers talk about the Asteroid Apophos and its flyby in 2029!
Week1: Neil deGrasse Tyson!
Week2: Bill Nye the Science Guy?

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.






Teaching AP CompSci:
Lab 04
Quarter I Weeks 9&10 Data Types!
10/27/14-11/07/14
Yeah, Quarter I is done! We finally finished LAB03 writing our own constructors, accessors, mutators and javadoc. We also did all we could with BIN, OCT, DEC and HEX as well as Truth Tables and Circuit Diagrams! Now we start LAB04 using int, short, byte, long, float and double. We also talked about java.lang.Math!

We also discovered a YouTube kindred spirit in CS50 at Harvard. They are doing a lot of the same material we are doing except they use a virtual machine install of Fedora Linux on their MAC or WIN laptops and they start out programming in Scratch and C! We use a native installation of Ubuntu Linux on our PC Desktops and Oracle's JDK.

CS50 LECTURES:

CS50 SECTIONS:

CS50 PROBLEM SET WALKTHROUGHS:

YOUTUBE WEDNESDAYS: 
Since we're doing Conic Sections and Planet Orbits in preCalculus, it's time for our Astronomy related YouTubes! We started by talking about really big and really small numbers and metric prefixes.
Week9: NEW Powers of Ten.
Week10: Original Powers of Ten.

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.





Teaching AP CompSci:
Lab 03
Quarter I Weeks 7-8 Name That Number!
10/13/14-10/24/14
We finished Object Oriented Programming Lab03 (OOP: creating our own classes). Then we started a unit on arithmetic in bases other than 10! I call this unit "Name That Number" especially at the begining of the unit when all we do is convert to and from base 10. The students were particularly baffled when a terminating rational number in one base converted to a repeating rational number, or even an irrational number, in another base! 

YOUTUBE WEDNESDAYS: 
If it's October, it's gotta be Admiral Grace Murray Hopper!
Week7: Letterman interview.
Week8: Walter Isaacson on CBS Sunday Morning (from my DVDR). 

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.








Teaching AP CompSci:
Lab 03
Quarter I Weeks 5-6 Writing Classes!
9/29/14-10/10/14
During these past couple of weeks, we finished Object Based Programming Lab02 (OBP: using existing classes). Then we started Object Oriented Programming Lab03 (OOP: creating our own classes). 

Many students new to programming had a hard time coming up with their own main classes to test their code. While writing their own classes, these students also had trouble deciding what to make a private instance field and making the distinction between accessors vs. mutators. 

We need to practice what data to encapsulate and what behaviours to abstract in our classes. It's been a tough week for some, but it's a good learning experience that will pay off in the end!

YOUTUBE WEDNESDAYS: 
If it's October, it's gotta be Admiral Grace Murray Hopper!
Week5: CBS Rewind 60 Minutes interview.
Week6: Full interview on DVD.

APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.




Teaching AP CompSci:
Lab 02
Quarter I Weeks 3-4 Using Objects!
9/15/14-9/26/14
OK, let me go back to my weekly or biweekly summaries. The day by day summary is too time consuming to write and I think too tedious to read! So, this will be a 2 week 
summary as this past week was quite short 
(Thursday and Friday was Rosh Hashanah).

We talked about constructing and using objects from existing classes in the Java Library such as java.awt.Rectangle, java.awt.Color, java.util.Random and java.lang.String. We mentioned constructors, accessors, mutators and immutable classes. I call this Object Based Programming (OBP). I reserve Object Oriented Programming (OOP) for when we write our own classes from scratch! I hope you are getting a lot out of our ScreenCasts with Java code attached to the YouTube descriptions.

We also talked about when to use lower-case, camelCase, ProperCase and UPPER_CASE following the Java Library conventions. Finally we reviewed our commandline: ls, cd, mkdir, rmdir, rm, top, last, who, whoami, chmod, javac, java, javadoc and appletviewer!

I think I'm changing my mind about doing my own projects or mini case studies this year. The new 20 hour triple lab component imposed by the College Board in APCS is worrying me. So, below you will find some canvas class projects with pixel graphics for your information but I'm skipping these for now. I'll revisit this decision later in the year if we find we have the time. Maybe we'll just play with pixel graphics as an after AP Exam Final Project? 

YOUTUBE WEDNESDAYS: 
If it's September, it's gotta be Tom Lehrer!
Week3: Elements ala SheldonPotter not to mention Gilbert and Sullivan?
Week4: Lobachevsky channeling Danny Kaye!



APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.












Teaching AP CompSci:
Lab 01
Quarter I Week 2 println() Mania!
9/8/14-9/12/14
MONDAYHello World Version #2
Last week we left off on Hello1 which is your standard HelloWorld program using only println() for output. Today we played with Hello2 adding args[0] for commandline input.

TUESDAYHello World Version #3+4

Hello3 adds JOptionPane for GUI input. As a result we had to ssh -Y userid@IP to allow a graphic ssh tunnel. Be carefull, ssh in class works the same as ssh at home on a Linux or Mac box. If you are using putty in Windows, you can't do any graphics. Hello4 was about doing the same thing with JApplet!

WEDNESDAYLab 01 - C1X1+C1X2

We finally started Lab 01 which is everything you wanted to do with a println() in a main() method but were afraid to try! I modeled C1X1 (Chapter 1 Exercise 1) and the students tried to complete C1X2 in groups. C1X1 had us use "ASCII Graphics" to print out our names in a box. C1X2 was about printing out a face pattern. Of course, YouTube Wednesday would not be complete without Tom Lerher's "New Math" after which we discussed base 8 in great detail!

THURSDAYLab 01 - C1X3+C1X4

C1X3 had use output an ASCII version of a TicTacToe Board. C1X4 was similar but we had to produce a staircase pattern.

FRIDAYPop Goes the Quzzie!

We refined the Quizzie and took it for real this time:


APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.




Teaching AP CompSci:
HelloWorld
Quarter I Week 1 First Week Back!
9/1/14-9/5/14
I don't usually do a day by day rundown of the week, but here goes nothing!

MONDAY: Labor Day (nothing to report)


TUESDAY: Superintendent's Conferences where we spent all day in meetings except for the last 2 hours of the day when we finally got to set up our rooms. I spent those 2 hours moving 100 textbooks, arranging and tweeking 25 PCs, finding 25 chairs and placing 6 tables. Then I found that my SSH server's RAID drive crashed, so I had to setup openSSH on an alternate server I used to have for FTP. That's OK since I don't need the FTP server much anymore. I use the SSH sever for my AP Computer Science students to login from home and finish their Java projects. I share files with my students through Edmodo. I upload my files on DropBox, SageCell and YouTube aka my cloud!


WEDNESDAY: First Day of Classes

The first day of every quarter starts with the "Ceremony Of The Seats" (new seating assignments). The students come into a dark room except for the PC monitors and the SmartBoard. On the SmartBoard I'm playing an MP3 of the sound track to "A Beautiful Mind" over VLC. Since this isn't an MP4, VLC adds some wild special effects on the SmartBoard so it's all cool. Then I walk to each seat and call each student using my SmartPhone as a flashlight as if I'm an usher in the Movie Theater. It's all very dramatic. Then we hand out books and book cards, go over the syllabus and fill out some biographical forms. Sorry, there's no instruction the first day of classes.
YOUTUBE: Since it was Wednesday, after all, I had to show a FILK or two! So, at the end of the period I snuck in our own student made Frozen and then the infamous Mathmaticious!

THURSDAYHello World Version #1

Of course, I had to start with Hello World! This version simply uses println for output. The next version will add args[0] commandline input! We are using a basic Linux Shell or Terminal with a text or ASCII Editor along with jdk 1.6's java and javac utilities. I'll introduce appletviewer next week and javadoc in chapter 3 when we write our own classes.

FRIDAYPop Goes the Quzzie!

I know it's only the 3rd day of class. However, I did throw a lot of acronyms and jargon at my students already, so here's the quiz. I hope you know all the answers. Let me just do these fill-ins for you:

PARTC: MrG has been teaching

1010) PROGRAMMING since 1975
1011) NYS REGENTS MATH & SCI since 1984
1100) COLLEGE MATH & COMP since 1993
1101) LINUX CLUSTERS since 2002
1110) COMP ALG SYSTEMS since 2011
1111) IDK! since 2020
APCS: AP CompSci + JAVA SCREENCASTS
YouTube descriptions include links to code and notes if you need them.

Teaching AP CompSci: 
APCS NEW LAB DEBATE!
Quarter I Week 0 August Preparation
I started getting ready for the new AP Computer Science 20 hour lab requirement that's replacing the GridWorld Case Study using the 3 New Labs some time ago. If I recall correctly, all I had to do was goto the secure documents area of the APCommunity Teacher Audit site and download 3 zip files. Before downloading said files I had to click on some sort of acknowledgement pop up about using these labs or similar labs of my own design as part of the 20 hour requirement, that these files are indeed secure (ie: not to be posted publically) and that GridWorld is gone!

If that's all you think that you have to do for your students, I'd say that you're missing the point! The new requirement is to have at least 20 hours of lab time as part of your course. I don't think that's going to be a problem for most of us currently teaching APCS as I'm sure we probably provide more than 20 hours of lab time already. I know that I have lab time as part of every single class (that's why I teach in a PC Lab/Classroom). In 150 classes before AP Review and AP Exam Week, I probably have 100 hours of lab time! I can go many classes in a row without any formal lecture if we are in the throws of a particularly challenging problem set. I usually do a brief lecture at the beginning of a chapter. Then I give the students a pdf of the chapter to study at home privately via Edmodo or DropBox. Then I give my students a problem set for the chapter to hash out "together" (ie: in pairs but I help out at each PC or at the SmartBoard).

Now, if the 20 hours really means 20x60 minutes and not 20 periods, then the new requirement is more like 30 periods if your periods are 40 minutes long. So, if you did the New Labs all in a row, we're talking, for example, all of January and most of February.

When I heard of the demise of GridWorld, I was very happy as I could finally go back to using my own smaller "case studies" or projects that I never had time to do since the advent of College Board imposed Case Studies. I would only be able to do 1 or 2 of my own projects and varied them each year. I guess I'm a throw back to the time before AP Case Studies. Yes, there was such a time, and I enjoyed teaching that way.

Now the problem is to be able to cover the same material presented in the New Labs in those 20 hours. I was going to do my own thing or even just stick to GridWorld for a while. But now that I see the labs, I think my students may well enjoy this approach. I'll probably do a mix of a few of my own projects with the New Labs and the old problem sets from our textbook.

I've read the articles on http://www.skylit.com (Maria and Gary Litvin) as well as on http://www.bluepelicanjava.com (Charles Cook) regarding the use of the 3 Labs. Gary makes the case that the New Labs will take too much class time to cover thoroughly. Charles talks about reorganizing the labs into 17-23 hours of class time to cover them all. BluePelicanJava includes a lot of APCS B aka CS II, so I guess we can cut some of that! I was originally 100% with Gary, but now I think I'm somewhere between the two. 

http://www.apluscompsci.com (Stacey Armstrong) even has a College Board approved syllabus with the New Labs integrated throughout the year. So, I guess she's on board too.

I haven't heard much from Cay Horstmann, or anyone else for that mater, on this subject.

You know, when we used to teach C++ in AP Computer Science, I used Gary Litvin's C++ for You++ as well as Owen Astrachan's Tapestry. Both of these C++ texts were masterpieces in my opinion! 

Now, I use Gary's "MP3: Mathematics for the Digital Age and Programming in Python 3.0" in my intro CS class and Cay's Big Java in APCS A aka CS I. I wonder what Owen has to say about the New Labs. He's probably too busy developing the new AP CS Principles course to weigh in on this. BTW, these two texts are masterworks as well! Keep up the good work!

Am I going to be able to fit in every single exercise from all 3 Labs the first year? Probably not, but I think I'll try to fit as much in as I can. As with everything else, it comes down to experience. WRT to the 3 Labs we are all NOOBS again, so this year we can do justice to some of the Labs, next year a bit more, then eventually we'll get it down. 

On a related note, if I had decided NOT to use the New Labs and substitute my own projects covering the same concepts, would I have had to resubmit my APCS Syllabus for audit? I was never clear on this point. I suppose it's moot now as I'm using the New Labs.


If you want ideas for your own projects, I like to use the StdDraw class from Princeton CS 126. I've also used How To Think Like A Computer Scientist in my intro course using Python. Some of the projects in there could easily be done with Java. Here's some nice lab ideas from the awesome Roger Frank!

Given enough time (obviously can't do all this but I wish I could), here's what I'm thinking:

CH1: Hello World 
(main, println, basic IO)
CH2: Using Objects 
(from existing classes)
CH3: Implementing Classes 
(our own constructors, accessors, mutators)
CH4: Fundamental Data Types
(Objects vs Primitives)
CH6: Decisions 
(if statements, boolean expressions)
CH7: Iteration
(for loops, while loops, for each loops)

**MAGPIE LAB**


PROJECT: RockPaperScissorsLizardSpock (IF)

PROJECT: ROT13 Encryption (Strings)
PROJECT: Lindenmayer Systems (Strings)
PROJECT: Pythagorean Triples (Loops)
PROJECT: Function Graphing Calculator
PROJECT: Parametric Graphing Calculator
PROJECT: Polar Graphing Calculator

CH8: Arrays and ArrayLists

(1D and 2D static arrays, Lists)

**PICTURE LAB** skip optionals


PROJECT: Polygons and ShoeLace

PROJECT: Iterated Fractal Systems
PROJECT: Number Base Conversions
PROJECT: Roman Numeral Arithmentic
PROJECT: Chess960 and Random Numbers
PROJECT: Complex and Mandelbrot

CH11: Interfaces and Polymorphism

CH13: Inheritance

**ELEVENS LAB** skip optionals except sim


CH18: Recursion

CH19: Sorting and Searching
PROJECT: Turtle Class
PROJECT: Turtle Class+Lindenmayer
PROJECT: Turtle Class+Koch SnowFlakes
PROJECT: Turtle Class+Ball/Ballistics
PROJECT: Turtle Class+nBody/Orbits
PROJECT: Our own Static Math Class

AP REVIEW

AP EXAMS
POST AP EXAMS:
Linux Clusters, MPI4PY
Python, VPython, Cython
SAGE, POVRAY, BLENDER, TACHYON

Python Samples to convert to Java projects:




Java Samples:








VPython Sample:



SAGE Samples: 

(4 video playlist)


Clusters and Scientific Computing Samples:

(6 video playlist)

Well, that's all folks!

No comments:

Post a Comment