0
votes
1answer
44 views

What 's Big O notation on this specific code?

I want to know Big O notation and Big Omega notation (worst case, best case) of this code It is a sorting algorithm and my guess is that it has a O(n) and Omega(n) : public static void swap(int[] ...
1
vote
1answer
26 views

ask step by step levenberg-marquardt in java

i try to write levenberg marquardt in java, these are some code: while (iter <= 10 || mse < 0.0001) { call.calc_jacobian(ff, trainlm, input, akt1, akt2, w, x, t); double[][] ...
0
votes
1answer
46 views

java calculate pregnancy algorithm [duplicate]

hello I am trying to calculate how many days are left in a pregnancy term but I think my algorithm is incorrect public int getDaysPregnantRemainder_new() { GregorianCalendar calendar = new ...
0
votes
1answer
45 views

Having trouble understanding and implementing the Ford Fulkerson algorithm

I'm trying to implement the Ford Fulkerson algorithm in Java. So far I have a graph with Nodes and Edges. The nodes contains an ID string and an adjacencyList of edges. The edges contain the capacity ...
0
votes
2answers
88 views

Counting the number of solutions for a given sudoku puzzle?

I'm developing a web based sudoku game that allows the user to custom made his own sudoku board. I need a way of telling the user the number of possible solutions that the board he assembled has. The ...
-1
votes
1answer
46 views

Regex decision trees [closed]

My question is something like this. Given some regular expressions (number of regular expressions can vary.) with each of them mapped to a certain destination(say to a name). So now for a given ...
0
votes
1answer
48 views

How to organize a single array into a two-dimensional one?

I am trying to split a one dimensional array of display modes into a 2-dimensional string array, though I have encountered trouble where I got to the point of splitting the sorted array of display ...
1
vote
1answer
89 views

Unknown Recursive Algorithm

I have found the answer to this problem a while ago but have since forgotten it. After hours of searching again, I cannot seem to find it. I have this recursive method: public static int f(int x, int ...
-7
votes
0answers
35 views

Creating a Trending Feature [closed]

Looking for some pointers on creating a Trending Feature (similar to twitter & yahoo), references to any existing algorithms and relevant online resources will be very helpful. Thanks
0
votes
0answers
31 views

Idle time for Earliest deadline algorithm

I can't figure out how to show the correct diagram for the earliest deadline first algorithm with idle times. So far here is my code: import java.util.*; class deadlineprototype { ...
0
votes
2answers
40 views

How to write sorting of strings with some additional rules

I have a problem with the testing sort strings with an addition conditions. Table contains a column which contains some string. The strings can be sorted in alphabetical order. But there are ...
0
votes
2answers
62 views

Split each string from a paragraph

I am trying to split each string from a paragraph, which has proper grammar based punctuation delimiters like ,.!? or more if any. I am trying to achieve this using Java. Here is my code. private ...
1
vote
1answer
48 views

Earliest deadline cpu scheduling

Updated:Solved my first question about sorting. But now I can't figure out how to show the correct diagram for the earliest deadline first algorithm with idle times. So far here is my code: ...
1
vote
5answers
89 views

Counters that flip signs in java

Ok so im trying to make a program and i need to have the counter start at -3 and go down by 2, but every other number has to be a positive: for example: -3, 5, -7, 9, -11, 13, -15, 17, -19,... any ...
2
votes
1answer
63 views

Fastest factorization process in java [closed]

I am writing a program in java which works to calculate the sqrt of a given value up to 10^100 . For this, I know I have to use a BigInteger but the process I am dealing with is not so efficient as it ...
-7
votes
4answers
55 views

What is the runtime complexity of the following method considering the simple statements? [closed]

Here is the code in java: void test(int n) { int i, j; ///first loop for ( i = 1; i <= n; i ++) { //second loop for (j ...
2
votes
10answers
130 views

How to improve my prime-number-sum algorithm?

I have written a code which returns the sum of all the prime numbers whose values are below 2 million. But it is taking huge time for the result(waited for 30 minutes for the answer). Can anyone ...
1
vote
3answers
71 views

Creating a ConcurrentHashMap that supports “snapshots”

I'm attempting to create a ConcurrentHashMap that supports "snapshots" in order to provide consistent iterators, and am wondering if there's a more efficient way to do this. The problem is that if ...
0
votes
0answers
52 views

Battleship AI about sinking part under certain conditions [duplicate]

I'm having some troubles in finding if, under certain conditions, is possible to code an efficient AI for the sinking part of battleship. Conditions are: the length of the shortest ship could even ...
10
votes
3answers
161 views

All natural numbers which sum up to N and where the inverses sum up to one

I have a problem to solve. N natural number is given. I need to find a list of natural numbers which sum up to that given number and at the same time the inverses up to 1. a + b + c + ... = N 1/a + ...
7
votes
4answers
135 views

Why is merge sort used by java to sort an array greater than elements 7

According to Wikipedia: "In Java, the Arrays.sort() methods use merge sort or a tuned quicksort depending on the datatypes and for implementation efficiency switch to insertion sort when ...
-2
votes
0answers
25 views

need to decrypt using triple DES

Below is the Initialization Vector : 75A8C978C3635080 Encryption Key : 20BD55BBC62E38ABB5B23EB35AEED09491A1021C0C3A1D17 encrypted value : ...
-5
votes
1answer
27 views

Best way to calculate a matching rate between a research and a database

I am doing an online dating service using Java EE, Hibernate and JSF. I want to do a matching system who can give a score according to certain search criteria.` In our database, we have many fields ...
0
votes
1answer
117 views

Battleship AI about sinking part under certain rules [closed]

I'm having some troubles in finding if, under certain rules, is possible to code an efficient AI for the sinking part of battleship. Rules are: the length of the shortest ship could even be 1. You ...
0
votes
2answers
77 views

Concatenate a string from a sorted Array

Hi I'm practicing for my interview and I would like to know if there is a better solution for this problem: Given a key String key="apple" and a sorted Array of strings, String[] words ={apple, ...
-5
votes
2answers
44 views

Java wait for user input specified milliseconds [closed]

I need some simple code in java that will allow me to loop, while waiting for the user to enter text into the console for a specified number of milliseconds, returning the entered text if text is ...
12
votes
3answers
163 views

Determine if a number only apears once in an array

So this is kind of a homework question, I've been thinking about it for quite a while, and came up with a couple of solutions but I think a better one exists. What's the fastest way to determine if ...
0
votes
0answers
64 views

Java search tree algorithm

We are making a slidepuzzle for a project for school. We succeeded in making the puzzle but now we want to make an ' ARTIFICIAL INTELLEGINCE'. THis means the computer can calculate the shortest ...
1
vote
3answers
79 views

Euclid Algorithm incorrect results

I am trying to write a Java implementation of Euclid's algorithm: The body of my method looks like this: while(a%b != 0) { int newA = b * ((int) Math.floor(a/b)); int newB = a - ...
4
votes
3answers
112 views

Algorithm traversal throughout a tree structure

Class Diagnostic { //Get the size in bytes of an object static long sizeOf(Object object); //Get the references for an object (leafs) static List<Object> getRefs(Object object); //Implement ...
2
votes
2answers
91 views

find the smallest e1-e2 in a set of many elements in Java language [closed]

I have a problem that is: given a set of integers (e1,e2,e3....) , determine the smallest ex-ey (the smallest result of the subtraction of any 2 elements in the set). I know this has to do with ...
0
votes
2answers
44 views

My puzzle about getting a function to return a permutation array

I want to get a method which returns the all the permutations of input string. I have searched the internet and found that most of them are similar to Robert Sedgewick's ...
-2
votes
1answer
40 views

How to convert this 2 columns data into a Tree in Java? [closed]

Say, I got a 2 column table Parent - Child 135 - 140 140 - 141 141 - 142 141 - 145 135 - 149 149 - 150 The top father ("135") is the first value in Parent column. The data can be put into a List. ...
0
votes
2answers
96 views

all possible combination of n sets

I have n Sets. each Set has different number of elements. I would like to write an algorithm which give me all possible combinations from the sets. for example: Lets say we have: S1={1,2}, ...
0
votes
1answer
55 views

Which Algorithm to choose in pattern matching time serie?

I 've got multiple time series represented as multiple list of integers (in main memory, not in database). I need to perform a fast search, among all series, to find a specific pattern. Example, ...
0
votes
1answer
27 views

how to import and consolidate similar (but not equal) text from several different sources

I am importing a set of data from several files (excel files) that holds records with no identifiers on a daily basis. the data needs is then stored in a relational database (Oracle). The problem is ...
1
vote
1answer
54 views

Universal Hashfunctions for string

I am trying to implement two different universal hash functions for strings. But I have the problem that sometimes the hash value is 0. With this I can´t use the hash function because I want to ...
5
votes
1answer
109 views

Implementing a swap method for an indexable concurrent skip list

I'm implementing a concurrent skip list map based on Java's ConcurrentSkipListMap, the differences being that I want the list to allow duplicates, and I also want the list to be indexable (so that ...
-4
votes
0answers
73 views

is it good to use design pattern in single module? [closed]

I have 2 question regarding Design pattern 1) I am working on a java project which is already developed now i need to include a new module. it's spring based project so do i need (or good ...
0
votes
1answer
74 views

Caching data using collection

So, I have an issue caching data inside a java collection. When I initialize the app for the first time I use the below function like this, cacheImageAndSounds(0,6); Now once I reach the 4th ...
6
votes
3answers
159 views

How can I improve my algorithm for generating combinations of a multiset?

How can I optimize the next() and hasNext() methods in the following generator which produces combinations of a bounded multiset? (I posted this to C++ as well as Java because the code is ...
0
votes
2answers
51 views

Android - Change text of button in a selected row

i've tried everything but nothing have worked. I have a listView like this: [ checkbox ] | [textview] | [button] What i'm trying to do is change the text of [button] only in the row witch [ ...
1
vote
5answers
87 views

How to do Without Replacement In Java

I am doing a program where 3 numbers from 1-5 are randomly generated. I want it so that when a number is generated, it can't be generated again. Like so I can't get 121, only something like 134
-1
votes
0answers
46 views

Group by elements of a vector with respect to their first character [closed]

How can I group by the elements of vector of string with respect to first character? I am not able to figure out why my code is not adding last element in proper manner. I have changed the code to ...
-4
votes
2answers
81 views

Classify data in a List [closed]

I have a List here: List<String> container = new ArrayList<String>(); container.add("Book"); container.add("Paper"); container.add("Book"); container.add("Pen"); container.add("Pen"); ...
1
vote
1answer
36 views

InsertionSort vs ShellSort with Gap Size = 1?

I have two implementations for two different sorts, InsertionSort and ShellSort. They are as follows: InsertionSort: for (int pos = 0; pos < arrayToBeSorted.length; pos++) { for (int ...
-1
votes
1answer
66 views

Finding cycle in 2 dimensional array

Hi i want to find cycles in 2 dimensional(nxm) array. i have n.m-1 filled cell in my array and i want to find cycle starting empty cell, continues in filled cells an finish in empty cell. For example ...
3
votes
3answers
108 views

Finding the median in B+ tree

I need to implement a B+ tree. And i need to create the following methods: Insert(x) - 0(log_t(x)). Search - Successful search - O(log_t(x)). Unsuccessful search - O(1) {With a high likely-hood} ...
-2
votes
0answers
62 views

Iterative Improvement Algorithms in Travelling Salesman [closed]

I am implementing Iterative Improvement Algorithm for Travelling salesman problem with time window (First and Best) in Java. As It was stated in the book.First and best Improvement Algorithms can give ...
0
votes
1answer
58 views

Non cryptographic hash function for list

Hi can anybody suggest a hash function that would take a list of integers and returns a new integer? It should be fast to evaluate and more or less collision resistant. I plan to use it in an ...

1 2 3 4 5 64