Tagged Questions

2
votes
3answers
376 views

Find Duplicates In Arrays

I am writing a method that would take the values and the array and find duplicates. If there are duplicates, like for instance two values have the same value, I will multiple that value by 2. If two ...
2
votes
12answers
2k views

Efficient way to compare two strings (ordering of characters irrelevant)

I am trying to come up with an algorithm to compare two strings. It would register a match any words that contain the same letters. For example rent and tern would be equivalent because they both ...
1
vote
3answers
388 views

Is there a Java API for comparing Database Schemas

I'd like to compare if tables columns including datatypes and length/precision. indexes and their columns constraints in two database schemas are identical. Is there anything like this ...
1
vote
2answers
100 views

How can I find out if two arguments are instances of the same, but unknown class?

Let us say we have a method which accepts two arguments o1 and o2 of type Object and returns a boolean value. I want this method to return true only when the arguments are instances of the same class, ...
0
votes
4answers
105 views

Comparing variables of objects in an array?

I've an array of objects in Java. Say these objects Obj contain a variable var, and I have several Obj stored in an array Array[]. I'd like to compare the var between two adjacent Obj but I don't ...
0
votes
6answers
456 views

Replace XML self-closing tag with empty one

I have to compare XML data. There are two sources- Web Service XML files I don't see any easy way to transform them in same classes and use equals method. The classes that work with Web Services ...
0
votes
2answers
120 views

comparing a Node and an Object with a BST data structure

I'm getting a "java.lang.string cannot be cast to node" exception. I thought of converting the localRoot to a string using a provided toString method then comparing them, nut this leaves no concept of ...