Posts by João Paulo Rolim • 75 points
2 posts
-
6
votes1
answer1224
viewsQ: What is the best implementation of 'Mergesort Algorithm'?
I know the Quick Sort algorithm, but at the moment I want to analyze Merge Sort. I found two types of Merge Sort implementation on the Internet. But when I compare them to the Insertion algorithm,…
-
1
votes2
answers65
viewsQ: What is the behavior of a method that returns integer within the if?
I have the following test code (Java language): public class Teste { static int n = 10; static int[] vB = new int[10]; public static void exibir(){ for (int i = 0; i < n; i++) {…