0
votes
6answers
100 views
Checking an array of data for similar elements in C
Hi,
I created an "address" structure. Each address (xx.yy.zz.mm) consists of an xx, yy, zz and mm element, all of which are ints. Each address also has a "name" element associated with it.
I have an …
0
votes
1answer
85 views
C# Comparing Two Custom Lists
I have run into a situation where I need to compare two different lists to each other and I am wondering what the best method is for doing this? I thought something like this would work but it …
1
vote
12answers
436 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 …
0
votes
2answers
24 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 …
0
votes
1answer
31 views
Any existing php code out there for condorcet comparing?
I beleive the website 'whatsbetter.com' (defunct) used a Condorcet method for comparing two images such that they could join a list of ranked images, and also have data stored about their performance …
2
votes
2answers
215 views
How to do equality comparison in SQL with C#-like behavior?
How to compare equality of value in SQL with null?
For those familiar with C#, here are the results of comparing nullable values:
null == null : true
null == john : false
null == paul : false
john …
0
votes
5answers
214 views
What is the best way of comparing a string variable to a set of string constants?
if statement looks too awkward, because i need a possibility to increase the number of constatnts.
Sorry for leading you into delusion by that "constant" instead of what i meant.
4
votes
7answers
623 views
Comparing 2 huge lists using C# multiple times (with a twist)
Hey everyone, great community you got here. I'm an Electrical Engineer doing some "programming" work on the side to help pay for bills. I say this because I want you to take into consideration that I …
0
votes
4answers
441 views
comparing arrays in objective-c
Ok a pretty simple question.. in c++ it seems to work but in objective-c i seem to struggle with it :S ..
If you want to compare two arrays it should be something like this right
for ( int i = 0; …
0
votes
1answer
161 views
comparing object attribute in one array to an object attribute in another array
Hello all ...
i seem to be having difficulties in accessing and comparing objects in NSMutableArrays in objective c.
I'm very new so when explaining , some code would be nice.
I have a character …
6
votes
6answers
693 views
Is it correct to compare two rounded floating point numbers using the == operator?
Or is there a chance that the operation will fail?
Thanks.
I chose the wrong term and what I really meant was rounding to 0, not truncation.
The point is, I need to compare the integer part of two …
