Find Jobs
Hire Freelancers

three task:- Java program , pseudocode code and Notation answer

€8-30 EUR

Em Andamento
Publicado há aproximadamente 9 anos

€8-30 EUR

Pago na entrega
Three question:- 1 Question:- Design, pseudocode and code:perform a mergesort , an insertion sort and a quicksort on the array. Question 2:- Just design and pseudocode :- ascending order. Question 3:- Java Program:- Program fibonacci series with use recursion
ID do Projeto: 7194186

Sobre o projeto

15 propostas
Projeto remoto
Ativo há 9 anos

Quer ganhar algum dinheiro?

Benefícios de ofertar no Freelancer

Defina seu orçamento e seu prazo
Seja pago pelo seu trabalho
Descreva sua proposta
É grátis para se inscrever e fazer ofertas em trabalhos
Concedido a:
Avatar do Usuário
this is part of code, I am the newer in freelancer, hope you trust me! public class TestMergeSort { public static void main(String[] args) throws Exception { //get input parameter int[] data = new int[[login to view URL]]; for (int i=0;i<[login to view URL] ;i++ ) { try{ data[i]=[login to view URL](args[i]); }catch(Exception e){ [login to view URL](" input parameter must be number, check it and try again! "); throw new Exception(" ERROR!"); } } mergeSort(data); [login to view URL]( "test merge sort end, good luck! " ); } public static void mergeSort(int[] data) { sort(data, 0, [login to view URL] - 1); } public static void sort(int[] data, int left, int right) { if (left >= right) return; // use the dichotomy int center = (left + right) / 2; // first recursive algorithm from left sort(data, left, center); // then recursive algorithm from right sort(data, center + 1, right); // sort data and merge merge(data, left, center, right); for (int i = 0; i < [login to view URL]; i++) { [login to view URL](data[i] + "\t"); } [login to view URL](); } /** * merge two sequenced arrays, result is still in sequence * * @param data is array * * @param left is first data index of left array * * @param center is the last index of left, and center+1 i
€24 EUR em 1 dia
0,0 (0 avaliações)
0,0
0,0
15 freelancers estão ofertando em média €23 EUR for esse trabalho
Avatar do Usuário
Hello I am Java and Algorithm expert and interested in this project. I have reviewed the requirements and confident to handle this project perfectly. I have a lot of experience in helping students with assignments. Please communicate so we can discuss further. Regards Anshu
€30 EUR em 1 dia
4,7 (401 avaliações)
7,4
7,4
Avatar do Usuário
Hello. It's easy assignment, It can be completed in several hours ..................................
€19 EUR em 1 dia
4,9 (639 avaliações)
6,8
6,8
Avatar do Usuário
Hi, I have strong background in JAVA and experience in Algorithms. Let me help you. I am ready to start.
€34 EUR em 1 dia
4,8 (100 avaliações)
6,1
6,1
Avatar do Usuário
A proposal has not yet been provided
€23 EUR em 1 dia
5,0 (83 avaliações)
5,7
5,7
Avatar do Usuário
Expert in Java programming language, Data Steuctures and Algorithms, Recursive functions, I can do these 3 question to the best quality. I wil provide source code with comments.
€30 EUR em 1 dia
4,9 (34 avaliações)
5,1
5,1
Avatar do Usuário
I have more experience in java , I can finish this in few hours , open chat for further details .
€15 EUR em 0 dia
4,5 (17 avaliações)
4,1
4,1
Avatar do Usuário
I'ma vailable now! let's pm for more details! regards, VLG words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit words to fill char limit
€34 EUR em 0 dia
5,0 (13 avaliações)
3,7
3,7
Avatar do Usuário
Hello! I have read description of your assignment. I've been programming for 4 years in Java, so I think I can help with your task.
€15 EUR em 1 dia
4,8 (8 avaliações)
3,0
3,0
Avatar do Usuário
Hi, I can deliver you a well commented code, like the solution of Q3, below :) I look forward to hearing from you. Adrian. /** * Write an application that finds the first entry in the fibonacci series * that is greater than 600 . * Fibonacci series: 1,1,2,3,5,8,13,21,34,55..... * Divide that number into its digits (600 would be 6 , 0 , 0) and calculate * the sum of the factorials of each digit ( 600 would be 6! + 0! + 0!) */ public class Program { public static int factorial (int N) { if (N == 0 || N == 1) return 1; // 0! = 1! = 1 return (N * factorial(N - 1)); // N!=N*(N-1)! }; // factorial /* Fibonacci series: 1,1,2,3,5,8,13,21,34,55..... */ public static int fibonacci(int n1, int n2) { return (n1 + n2); } // fibonacci public static void main(String[] args) { // // the first entry in the fibonacci series that is greater than 600 // int n1 = 1, n2 = 1; int N=0; while (N < 600) { /* Fibonacci series: 1,1,2,3,5,8,13,21,34,55..... */ N = n1 + n2; n1 = n2; n2 = N; }; // while // divide N into its digits (600 would be 6 , 0 , 0) int d1, d2, d3; d1 = N / 100; // left-most digit d2 = (N-d1*100)/10; // middle digit d3 = N - (d1 * 100 + d2 * 10); // right-most digit // sum of the factorials of each digit ( 600 would be 6! + 0! + 0!) int sum; sum = factorial(d1) + factorial(d2) + factorial(d3); } // main } // class Program
€30 EUR em 1 dia
5,0 (3 avaliações)
2,7
2,7
Avatar do Usuário
Hi sir i'm C#/Java developper i'm very interested and very excited to start this task since i'm familiar with sorting algorithms , i can complete this job with good quality , let me hear from you , best regards .
€23 EUR em 3 dias
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
Should be quick simple and painless, Let me know if your interested!! I have made this program before so It's only a matter of finding my program and sending it to you
€21 EUR em 1 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
A proposal has not yet been provided
€14 EUR em 1 dia
0,0 (0 avaliações)
0,0
0,0

Sobre o cliente

Bandeira do(a) IRELAND
dublin 12, Ireland
5,0
1
Membro desde dez. 1, 2014

Verificação do Cliente

Obrigado! Te enviamos um link por e-mail para que você possa reivindicar seu crédito gratuito.
Algo deu errado ao enviar seu e-mail. Por favor, tente novamente.
Usuários Registrados Total de Trabalhos Publicados
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Carregando pré-visualização
Permissão concedida para Geolocalização.
Sua sessão expirou e você foi desconectado. Por favor, faça login novamente.