Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Java Sorting Algorithms for Newbs
Rating: 4.7 out of 5(213 ratings)
3,713 students

Java Sorting Algorithms for Newbs

Scared of algorithms? Fear no longer as you learn how to implement various non-threatening sorting algorithms.
Last updated 2/2016
English

What you'll learn

  • Implement basic sorting algorithms into their own programs
  • Understand the procedure and theory behind sorting algorithms
  • Determine the relative speed of basic sorting algorithms

Course content

1 section8 lectures1h 0m total length
  • Introduction3:24

    After this introduction, you will be able to answer: Why are sorting algorithms important? How will I learn throughout the duration of this course? Which algorithms will I be able to implement?

  • Bubble Sort Overview5:25

    After this lesson, you will be able to comprehend and explain the way bubble sort correctly sorts a data set.

  • Bubble Sort: The Code7:25

    After this lesson, you will know how to implement bubble sort in code, especially in the Java programming language.

  • Insertion Sort Overview4:25

    After this lesson, you will be able to not only understand but also visualize how insertion sort works in practice.

  • Insertion Sort: The Code8:55

    After this lesson, you will be able to apply insertion sort to coding applications, especially with Java.

  • Merge Sort Overview7:24

    After this lesson, you will understand why merge sort is more complicated than bubble sort or insertion sort. You will be able to explain how merge sort is able to divide and reconstruct the data set to form a sorted set.

  • Merge Sort: The Code19:27

    After this lesson, you will be able to apply recursion to construct a divide-and-conquer approach to Java sorting - in this case, with merge sort.

  • Comparing the Speed of the Sorting Algorithms3:46

    After this lesson, you will know when it is appropriate to use bubble sort and insertion sort instead of merge sort, in terms of run-time.

  • Basic Sorting Algorithms

Requirements

  • You should have either a background in Java, or another programming language you feel is similar to Java syntax.
  • Make sure you already have a programming environment (like and IDE) already set up and ready to go.

Description

Does the word "algorithm" intimidate you? Well, it shouldn't! Algorithms are incredibly powerful programming tools, and once you pick up the basics of sorting algorithms, you'll be on your way in no time.

Begin Your Algorithm Journey With This Course Designed Specifically for Algorithm Newbies.

  • Learn the basic sorting algorithms first so you can eventually move on to more complicated algorithms
  • Implement the algorithms in Java code to see how they look in practice
  • Distinguish between the various features of basic sorting algorithms


Sorting Algorithms are Your Friends.

Sorting algorithms are not scary beasts; they are very practical programming tools. They can sort many different data sets: a basic integer array, a database of names, or a deck of cards. Nearly any large program could, and should, implement sorting algorithms.

That being said, algorithms are very important to software engineers. Let's say you're a video game programmer. You're going to need to be able to sort your hero's inventory or bank. Or, let's say you're a web developer. You're going to want to sort your content in a specific order.

Content and Overview

This course is designed for the average programmer who has absolutely no experience with algorithms. Although I recommend that you have some programming experience, particularly in Java, I assume no prior knowledge of algorithms.

You'll go through 8 lectures and 1 hour of content to get your feet wet in these sorting algorithms. Throughout the duration of the course, I'll focus on bubble sort, insertion sort, and merge sort - 3 beginner friendly sorting algorithms.

I take a two-pronged teaching approach. First, you'll see a definition and visual demonstration of each algorithm. This facilitates the second prong: the code. I'll take you step-by-step through the code implementation, explaining every line I type.

If you're looking to deepen your programming experience, and you're willing to learn, I recommend this course!

Who this course is for:

  • This basic Java sorting algorithms course is intended to provide an easy introduction into algorithms. Every algorithm will be implemented from scratch, so students should be willing to build from the ground-up.
  • This course is not for programmers who only want to utilize Java's included algorithmic methods.