Lecture Video

Results for Lecture Video

Web Programming Beginner Tutorials

I have created a series of brief videos to help students learn HTML and CSS techniques. These videos may be helpful for anyone looking to delve deeper into web site creation: https://www.youtube.com/user/jeffreyleboeuf/playlists ...

Resource - Leboeufj - 13 Aug 2014 - 07:21 - 0 comments

Unit 8: The Internet- Part 2

Minimum Minutes  Type Big Idea  Topic  Lesson Plan  External Lesson Resources     Unit 8: The Internet ...

Resource - trishan - 17 Jan 2015 - 12:30 - 0 comments

Tell Your Students: You Can Find True Love With Algorithms and Big Data

In this Wired article , we learn the story of mathematician Chris McKinlay who hacked OKCupid, an online dating site, to find the girl of his dreams while working on his doctoral dissertation on large-scale data processing. McKinlay’s romantic life wa ...

Blog Post - Lauren Amos - 2 Dec 2014 - 15:52 - 2 comments

Big Data introductory video

https://www.unlockingbigdata.com/data-warehouse-video.cfm  Not Featured Helpful Insightful (Data, Lecture Video, LO 3.2.2 - Use large data ...

Resource - larsonv - 12 Feb 2014 - 16:02 - 0 comments

Selection Sort Algorithm

Here are a few videos that I created last school year while teaching selection sorting. The worksheet is from Barbara Ericson, and the tiles idea is not mine. :)  The video shows us working through the algorithm using tiles. There is also two workshe ...

Resource - CrystalFurman - 10 Jan 2014 - 22:09 - 0 comments

selectionsortwithtiles.docx

selectionsortwithtiles.docx Worksheet to use with the tiles Unsorted Pointer find min (max) pointer int minPos int temp ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Selection Sort Algorithm

File attachment - CrystalFurman - 10 Jan 2014 - 22:09

selectionsortworksheet.docx

void selectionSort() { int smallestIndex = 0; // loop from 0 to one before last item for (int i = 0; i < a.length-1; i++) { // set smallest index to the one at i ... the outer loop finishes? Initial state -3 8 25 6 15 2 i=0 i=1 i=2 ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Selection Sort Algorithm

File attachment - CrystalFurman - 10 Jan 2014 - 22:08

Insertion Sorting Resources

Here are a few videos that I created last school year while teaching insertion sorting. The worksheet is from Barbara Ericson, and the tiles idea is not mine. :)  The first video shows a trace through the selection sort algorithm. The worksheet we ar ...

Resource - CrystalFurman - 10 Jan 2014 - 22:02 - 0 comments

insertionsortwithtiles.docx

insertionsortwithtiles.docx worksheet for using tiles Sorted Pointer pos -1 int pos int temp ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Insertion Sorting Resources

File attachment - CrystalFurman - 10 Jan 2014 - 22:01

insertionsortworksheet.doc

int temp = 0; int pos = 0; // loop from second element on for (int i = 1; i ... pos = i; // shift right any larger elements while (0 < pos && temp ... are the values in the array after each time the outer loop finishes? Initial state -3 8 25 6 15 2 i=0 ...application/msword icon application/msword attached to: Insertion Sorting Resources

File attachment - CrystalFurman - 10 Jan 2014 - 21:59

Syndicate content