active questions tagged comparison - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:22:28Zhttp://stackoverflow.com/feeds/tag/comparisonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1863028/string-compare-logic1String Compare "Logic"ISW2009-12-07T21:29:30Z2009-12-07T22:03:57Z
<p>Can anybody please tell me <em>why</em> the string comparisons below deliver these results?</p>
<pre><code>>>"1040"<="12000"
True
>> "1040"<="10000"
False
</code></pre>
<p>I've tried the string comparison in both C and Python, the result is obviously correct, I just can't figure out how the result is calculated...</p>
<p>P.S.: I know that comparing strings of different length is something you shouldn't do, but I'm still wondering about the logic behind the above lines ;-) </p>
http://stackoverflow.com/questions/1841370/how-to-compare-groups-of-tuples-in-sql0How to compare groups of tuples in sqllewap2009-12-03T17:05:16Z2009-12-07T11:03:51Z
<p>How to compare groups of tuples in sql: consider the following example: </p>
<pre><code>TABLE T1
--------
GROUP VALUE
----- -----
A FOO
A BAR
X HHH
X ZOO
TABLE T2
--------
GROUP VALUE
----- -----
B ZOO
C FOO
C BAR
</code></pre>
<p>I want to write an sql query which compares the groups of values in both tables and reports the differences. In the illustrated example, the group in table a: ((A,FOO),(A,BAR)) is the same as the group ((C,FOO),(C,BAR)) even though the group name is different. What counts is that the contents of the group are the same. Finally the query would report that there is a difference: it is the (B,ZOO) tuple.</p>
<pre><code>RESULT
------
GROUP VALUE
----- -----
B ZOO
X HHH
X ZOO
</code></pre>
<p>Although the group X containing ZOO in T1 has a matching value in T2: (B,ZOO) it is still not a match because the group also has the (X, HHH) value which is not part of the (B, ZOO) group in T2</p>
http://stackoverflow.com/questions/1852844/emacs-lisp-difference-between-function-lambda-and-lambda2Emacs Lisp: difference between (function (lambda ...)) and (lambda ...)?RamyenHead2009-12-05T17:39:29Z2009-12-06T00:31:42Z
<p>What is the difference between</p>
<pre><code>(function (lambda ...))
</code></pre>
<p>and</p>
<pre><code>(lambda ...)
</code></pre>
<p>and</p>
<pre><code>'(lambda ...)
</code></pre>
<p>?</p>
<p>It seems three are interchangeable in a lot of cases.</p>
http://stackoverflow.com/questions/1853183/best-way-to-write-an-or-is-equal-statement0Best way to write an or is equal statementskarama2009-12-05T19:30:07Z2009-12-05T21:21:07Z
<p>Hello $mostamazingforumforfastanswersever.</p>
<p>I have a quick silly question; what is the best way to write this :</p>
<pre><code>if ($curpageurl == "www.mysite.com/this" || "www.mysite.com/this/")
{
echo 'this is the this page';
}
</code></pre>
<p>and if it isn't, then I need to call </p>
<pre><code>while (isset($somevariable)
{
echo '$somevariable';
}
</code></pre>
<p>and if that variable isn't set and we are not on this page, then</p>
<pre><code>else
{
echo 'we are not on this page and the variable isn't set';
}
</code></pre>
<p>I know I'm not far from the right answer, and this actually works as is but only if I remove the || this/ portion of my first if statement. Is there a better way to write the or is equal to portion? || == for example? Thanks!</p>
http://stackoverflow.com/questions/1757136/find-the-closest-time-from-a-list-of-times2Find the closest time from a list of timessunmorgus2009-11-18T16:13:41Z2009-12-05T15:33:54Z
<p>So, here's the scenario. I have a file with a created time, and I want to choose a time from a list of times that that file's created time is closest or equal too...what would be the best way to accomplish this?</p>
http://stackoverflow.com/questions/475841/comparison-of-net-validation-frameworks3Comparison of .NET Validation FrameworksHosam Aly2009-01-24T10:38:21Z2009-12-05T02:37:57Z
<p>I was searching for a validation framework for .NET. I saw a few, but I didn't see any comparisons. Which one do you prefer to use, and why?</p>
http://stackoverflow.com/questions/1850456/compare-the-textual-content-of-websites1Compare the textual content of websitesSune Rievers2009-12-04T23:59:47Z2009-12-05T00:12:45Z
<p>I'm experimenting a bit with textual comparison/basic plagiarism detection, and want to try this on a website-to-website basis. However, I'm a bit stuck in finding a proper way to process the text.</p>
<p>How would you process and compare the content of two websites for plagiarism?</p>
<p>I'm thinking something like this pseudo-code:</p>
<pre><code>// extract text
foreach website in websites
crawl website - store structure so pages are only scanned once
extract text blocks from all pages - store this is in list
// compare
foreach text in website1.textlist
compare with all text in website2.textlist
</code></pre>
<p>I realize that this solution could very quickly accumulate a lot of data, so it might only be possible to make it work with very small websites.</p>
<p>I haven't decided on the actual text comparison algorithm yet, but right now I'm more interested in getting the actual process algorithm working first.</p>
<p>I'm thinking it would be a good idea to extract all text as individual text pieces (from paragraphs, tables, headers and so on), as text can move around on pages.</p>
<p>I'm implementing this in C# (maybe ASP.NET).</p>
<p>I'm very interested in any input or advice you might have, so please shoot! :)</p>
http://stackoverflow.com/questions/1844106/is-there-an-effective-way-to-determine-whether-equals-on-two-different-but-equa0Is there an effective way to determine whether .Equals on two different but "equal" instances will return true?Damovisa2009-12-04T00:33:24Z2009-12-04T07:28:03Z
<p>I'm attempting to use reflection to determine the result of a call to .Equals on two different but "equal" instances of a type.</p>
<p>My method would be something like:</p>
<pre><code>public static bool TypeComparesProperties(Type t)
{
// return true if (an instance of t).Equals(a different instance of t)
// will be true if all publicly accessible properties of the instances
// are the same
}
</code></pre>
<p>By way of example:</p>
<pre><code>string a = "Test";
string b = "Test";
bool areEqual = a.Equals(b); // areEqual will be true
// so:
TypeComparesProperties(typeof(string)); // should return true
</code></pre>
<p>However, given:</p>
<pre><code>public class MyComplexType
{
public int Id { get; set; }
public string MyString { get; set; }
}
MyComplexType a = new MyComplexType {Id = 1, MyString = "Test"};
MyComplexType b = new MyComplexType { Id = 1, MyString = "Test" };
bool areEqual = a.Equals(b); // areEqual will be false
// so:
TypeComparesProperties(typeof(MyComplexType)); // should return false
</code></pre>
<p>If I implemented <code>IEquatable<MyComplexType></code> on my class as follows, I'd get true instead:</p>
<pre><code>public class MyComplexType : IEquatable<MyComplexType>
{
public int Id { get; set; }
public string MyString { get; set; }
public bool Equals(MyComplexType other)
{
return (Id.Equals(other.Id) && MyString.Equals(other.MyString));
}
}
</code></pre>
<p>I figure I can probably do it by instantiating two instances using reflection, then setting all properties to appropriately typed default values. That's a lot of work though and a lot of overhead, and I think I'd run into problems if there was no empty constructor on the type.</p>
<p>Any other ideas?</p>
<p><hr></p>
<p><strong>Edit:</strong></p>
<p>It seems that people are confused by my intentions. I apologise. Hopefully this will clarify:</p>
<p>I have a method which should compare two objects to the best of its abilities. Simply calling .Equals() won't suffice, because either:</p>
<ol>
<li>The objects will be value types or will implement IEquatable in a nice way and I'll get a true response. Great!</li>
<li>The objects may have all the same properties and be "equal", but because they're different instances, I'll get a false response. <strong>I can't tell whether this false is because the objects are not "equal", or because they're just different instances</strong>.</li>
</ol>
<p>So in my mind, the comparison method should:</p>
<ol>
<li>Examine the object type to see whether it's <code>Equals</code> method will return true for two different instances with the same public properties.</li>
<li>If so, call the <code>Equals</code> method and return the result</li>
<li>If not, have a look at all the properties and fields and compare them as well as I can to determine whether they're equal</li>
</ol>
<p>Now, I understand that I could just skip to step 3, but if there's a way to determine ahead of time whether it's necessary, that'd be a time-saver.</p>
<p><hr></p>
<p><strong>Edit 2:</strong></p>
<p>I'm gonna close this for a couple of reasons:</p>
<ol>
<li>The more I talk about it, the more I realise that what I asked isn't what I really wanted to do</li>
<li>Even if I did want to do this, there's no real shortcut at all. RE the earlier edit, I should just skip to step 3 anyway.</li>
</ol>
<p>Thanks all for your input.</p>
http://stackoverflow.com/questions/1280516/alternatives-to-userfly-com1Alternatives to userfly.comdfa2009-08-14T22:31:59Z2009-12-04T04:28:52Z
<p>During my master thesis I need to study how my users interact with my webapp. </p>
<p>There are alternatives to <a href="http://userfly.com" rel="nofollow">userfly.com</a>? I want just to know how I can do some usability testing without much hassle.</p>
<p>Requests:</p>
<ul>
<li><strong>must work under https</strong> </li>
<li>cheap </li>
<li>unobtrusive, if possible </li>
</ul>
http://stackoverflow.com/questions/1837217/basic-excel-date-and-time-problem1Basic excel date and time problembaron2009-12-03T02:04:58Z2009-12-03T02:20:22Z
<p>Hi everyone,</p>
<p>Have a list of dates in excel in the format (this comes originally from csv):</p>
<pre><code>23/11/09 07:27:02
23/11/09 08:01:50
23/11/09 08:38:58
23/11/09 09:40:01
</code></pre>
<p>What I want to do is count the number of these falling between hour blocks, like 7-8, 8-9, 9-10 etc
Not sure how to get started, but one idea was just to put logic statements comparing the dates between these blocks, then adding the total "trues"</p>
<p>I can't get it to compare properly. When I type it the hour block marks, </p>
<pre><code> e.g. 23/11/09 08:00
excel actually shows that as
23/11/2009 8:00:00 AM
</code></pre>
<p>and the compare doesn't work. Well actually it does the opposite of what it should.</p>
<p>that is:</p>
<pre><code>=IF(C5>L1,IF(C5<M1,TRUE,FALSE),FALSE)
</code></pre>
<p>C5 being date in top codeblock, L1 and M1 being the hour blocks I manually entered in the second code block.</p>
<p>Has anyone got any ideas?</p>
http://stackoverflow.com/questions/1835870/compare-nsstring-accounting-for-articles-i-e-the-and-a0Compare NSString accounting for articles (i.e. "the" and "a")Corey Floyd2009-12-02T21:13:33Z2009-12-02T21:33:48Z
<p>I thought caseinsensitiveLocalizedCompare: would take care of this (that is not including "the" and "a" in the comparison) , but it does not. </p>
<p>(Also, In response to the first answer below, I understand that "case insensitive" part wouldn't help, but I thought that the "localized" part may help.</p>
<p>I can't find any options to do this and google is unusable since I am searching for "the" and "a".</p>
<p>I figured since this is very common, that something would exist in Cocoa.</p>
<p>I am implementing my own method, but figured there was a built in way to do this.</p>
http://stackoverflow.com/questions/1831410/python-time-comparison1Python time comparisonSteve Jay2009-12-02T08:22:33Z2009-12-02T08:36:19Z
<p>How do I compare times in python?</p>
<p>I see that date comparisons can be done and there's also "timedelta", but I'm struggling to find out how to check if the current time (from datetime.now()) is earlier, the same, or later than a specified time (e.g. 8am) regardless of the date.</p>
http://stackoverflow.com/questions/1827002/bitmap-of-a-signature-comparison-in-c0Bitmap (of a signature) comparison in c#Matthew Hood2009-12-01T15:40:46Z2009-12-01T17:00:41Z
<p>We have a for fun project which require us to compare two black and white bitmaps of two signature and say whether they are the same persons signature. As this is just two loaded bitmaps rather than data captured from a tablet the approach is going to be a little different to normal signature recognition.</p>
<p>I am thinking it would require the following steps</p>
<ul>
<li>Crop the bitmaps to just the signature</li>
<li>Try to work out some kind of rotation to align them</li>
<li>Resize to make the cropped / rotated bitmaps the same</li>
<li>Analyse the signature inside (maybe by breaking down into a grid)</li>
</ul>
<p>Does anyone have any thoughts on this project? How to best do the rotation, comparison etc? Seen anything similar?</p>
http://stackoverflow.com/questions/1678926/is-there-a-way-to-compare-the-appearance-and-or-source-html-of-2-browser-tabs2Is there a way to compare the appearance and/or source HTML of 2 browser tabs?Rog2009-11-05T07:33:01Z2009-12-01T00:47:00Z
<p>I'm working on a web based application, and in order to test my changes, I'd like to be able to compare the visual rendering (perhaps by way of overlaying) and the source HTML (<em>diff</em> style) of 2 browser tabs (development vs production). I'm happy to use any browser to do this.</p>
<p>I've already got a couple of scripts that pull the HTML from 2 sites and compares them, but it's tedious outside of a browser and doesn't easily handle the situation where there are session based clickstreams to get to the pages that I'd like to compare. I've also copied and pasted the source into a comparison tool manually, but again this is quite tedious.</p>
<p>Any tips?</p>
http://stackoverflow.com/questions/584399/mdb-comparison-tool0MDB comparison toolDB User2009-02-25T01:18:31Z2009-11-30T21:35:26Z
<p>Is there any other MS Access DB comparison tool like Cross-Database comparator? I want a tool that does a mass comparison like CDB</p>
http://stackoverflow.com/questions/1815977/arrays-counting-comparing-and-increase0Arrays: Counting, Comparing and IncreaseNoCanDo2009-11-29T16:31:03Z2009-11-29T17:28:49Z
<p>Woohoo, I've come to arrays now, thank god.</p>
<p>Now, I've got 2 arrays!</p>
<pre><code>int colorvalues[][] = {{34,255,255,56},{127,204,11,34},{123,98,127,34},{34,34,127,17}};
</code></pre>
<p>Imagine it as a 4x4 pixel picture</p>
<p>Now, I want to create a histogram, the distribution of colorvalues from 0 to 255. For example here I've 2*255, 2*127, 5*34 and so on.</p>
<p>So I've created an int histogram[] = new int [255];</p>
<p>To test if my colorvalues are correct I wrote:</p>
<pre><code> for(int i=0; i < colorvalues.length; i++){
for (int j = 0; j < colorvalues.length; j++){
System.out.println("Colorvalue in Array " + i + "." + j + " is" + colorvalues[i][j]);
}
}
</code></pre>
<p>So far, so good. Now, how do I write a procedure that goes in histogram[255] from 0 to 255, and compares it to the value of colorvalues[][], and if, for example, histogram[34] compares to colorvalues[][] it adds 5 to histogram[34]. Because there's 5 times 34 in colorvalues[][].</p>
<p>Maybe my thinking is wrong and I was supposed to have histogram[255][], 255 for colorvalues from 0 to 255 and the other for the counter. Even then, how do I realize it?</p>
http://stackoverflow.com/questions/1815033/what-is-the-key-difference-between-a-web-application-and-a-web-portal1What is the key difference between a Web application and a Web Portal?Colour Blend2009-11-29T08:41:40Z2009-11-29T08:52:20Z
<p>I taught i had a clear view of the difference between these, but giving it a deep i got confused.</p>
<p>Can someone help with a comparison, please?</p>
http://stackoverflow.com/questions/1800845/what-php-blogging-software-should-i-choose0What PHP Blogging Software Should I ChooseBigZ2009-11-26T00:11:19Z2009-11-28T13:51:55Z
<p>I am thinking of starting a blog, which I would like integrated into my existing website. I come back empty handed from googling for a comparison of blogging software written in PHP.</p>
<p>My requirements:</p>
<ul>
<li>Simple but not rudimentary (not a result of a 15 minute CodeIgniter tutorial)</li>
<li>Quality source code (I'd like to be able to learn from it and maybe change it)</li>
<li>Prefer PHP5 over PHP4</li>
<li>Work with MySQL</li>
<li>Easy to integrate into an existing website (I don't want it to be a separate application with a different look and feel under a "blog" directory</li>
<li>Run under safe_mode</li>
</ul>
<p>Built-in or easy-to-add source code highlighting would be a plus.</p>
http://stackoverflow.com/questions/1803064/myfaces-vs-sun-reference-implementation-of-jsf0MyFaces vs Sun Reference Implementation of JSFRoman2009-11-26T11:12:11Z2009-11-26T21:43:50Z
<p>Maybe, some performance comparison or some noticeable specific differences is what I want to know.</p>
<p>As I heard there is no really big difference. Hence, I've got one more question. For what purposes dozens of people spent their time to <strike>reinvent the wheel</strike> implement already implemented spec ones more? </p>
http://stackoverflow.com/questions/328976/thorough-use-of-if-statements-or-try-catch-blocks2Thorough use of 'if' statements or 'try/catch' blocks?Daddy Warbox2008-11-30T15:53:35Z2009-11-26T16:40:38Z
<p>Give me some of your thoughts on which is a better coding practice/makes more efficient code/looks prettier/whatever: Increasing and improving your ability to use if statements to anticipate and catch potential problems? Or simply making good use of try/catch in general?</p>
<p>Let's say this is for Java (if it matters).</p>
<p><strong>Edit:</strong> I'm presently transitioning myself away from some admittedly out-dated and constrained current coding practices, but I'm a little torn on the necessity of doing so on a few points (such as this). I'm simply asking for some perspectives on this. Not a debate.</p>
http://stackoverflow.com/questions/1432095/air-flash-comparison-core1air flash comparison coremsaif2009-09-16T10:06:10Z2009-11-26T08:59:00Z
<p>What are the differences in developing for AIR versus flash? why should i choose one over the other in a given situation?</p>
http://stackoverflow.com/questions/627839/spring-vs-jboss1Spring vs Jbossflybywire2009-03-09T20:14:02Z2009-11-25T22:19:10Z
<p>What are the advantages and disadvantages for Spring vs. Jboss for an enterprise web application.</p>
http://stackoverflow.com/questions/1795496/java-generics-comparison0Java Generics comparisonistvanp2009-11-25T08:46:51Z2009-11-25T09:10:45Z
<p>How do you go about comparing two generic classes?</p>
<pre><code>class Entry<K,V>
{
protected K key;
protected V value;
public K getKey() { return key; }
public V getValue() { return value; }
public static Comparator KeyComparator = new Comparator()
{
public int compare(Object o1, Object o2)
{
int key1 = ( (Entry) o1 ).getKey();
int key2 = ( (Entry) o2 ).getKey();
if (key1 > key2)
{
return 1;
}
else if (key1 < key2)
{
return -1;
}
else
{
return 0;
}
}
};
}
</code></pre>
<p>I get the following compile error:</p>
<pre><code>int key1 = ( (Entry) o1 ).getKey();
^
int key2 = ( (Entry) o2 ).getKey();
^
incompatible types
found : java.lang.Object
required: int
</code></pre>
<p><code>K</code> and <code>V</code> will be <code>Integer</code>s used within a circular arraylist implementation. Is there a simpler way (or at least one that works) to compare like I normally would with <code>int</code>?</p>
http://stackoverflow.com/questions/1792147/comparing-character-arrays-and-string-literals-in-c-without-cstring0Comparing character arrays and string literals in C++ without cstringblcArmadillo2009-11-24T18:54:52Z2009-11-25T06:09:40Z
<p>In my programming class we currently have a project that requires us to take arguments into the program. I then need to be able to check one of the arguments to see which value was passed to the program so that I can choose the appropriate behavior for the program to follow. In a previous homework assignment I did this with the strcmp function included in the cstring library using the following code:</p>
<pre><code>int main(int argc, char *argv[]) {
if (strcmp(argv[1], "yes") == 0) {
// do this code
} else if (strcmp(argv[1], "no") == 0) {
// do this code
}
}
</code></pre>
<p>However, for some reason we're not allowed to use the cstring library in this project. How else can I do this?</p>
http://stackoverflow.com/questions/1408901/asp-net-mvc-vs-spring-mvc-1asp.net mvc vs spring mvcsirmak2009-09-11T03:57:59Z2009-11-24T13:56:29Z
<p>Hi,</p>
<p>Can anyone please make a comparison of "asp.net mvc" vs "spring mvc (java)".
Which technology is better in performance, productivity, maintenance, features,...</p>
<p>Regards,
sirmak</p>
http://stackoverflow.com/questions/1788227/objective-c-comparing-integers-not-working-as-expected2Objective-C - Comparing integers not working as expectedMatt.M2009-11-24T06:29:25Z2009-11-24T06:35:28Z
<p>Hi everyone. So my problem is this:</p>
<p>I am receiving a JSON string from across the network. When decoded (using SBJSON libraries), it becomes an NSDictionary that SHOULD contain a number of some sort for the key 'userid'. I say 'should' because when I compare the value to an int, or an NSINTEGER, or NSNumber, it never evaluates correctly.</p>
<p>Here is the comparison in code:</p>
<pre><code>NSDictionary *userDictionary = [userInfo objectAtIndex:indexPath.row];
if ([userDictionary objectForKey:@"userid"] == -1) {
//Do stuff
}
</code></pre>
<p>The value inside the dictionary I am testing with is -1. When I print it out to console using NSLog it even shows it is -1. Yet when I compare it to -1 in the 'if' statement, it evaluates to false when it should be true. I've even tried comparing to [NSNumber numberWithInt: -1], and it still evaluates to false.</p>
<p>What am I doing wrong? Thanks in advance for your help!</p>
http://stackoverflow.com/questions/454720/what-are-the-differences-between-llvm-and-java4What are the differences between LLVM and java?acidzombie242009-01-18T05:49:48Z2009-11-22T20:41:27Z
<p>I dont understand the difference between LLVM and the java (bytecode), what are they?</p>
<p>-edit- by 'what are they' i mean the differences between LLVM and java (bytecode) not what are LLVM and java.</p>
http://stackoverflow.com/questions/1766741/comparing-ruby-hashes1Comparing ruby hashesfluid_chelsea2009-11-19T21:37:15Z2009-11-19T22:52:21Z
<p>Hi</p>
<p>I have two ruby hashes (which are essentially models) and am trying to find the differences between them, one is an old instance of an object where the other has new values assigned to some attributes. I'm trying to determine which keys have changed, but there doesn't seem to be anything built into the Hash for this. I can think of a few brute forceish solutions, but was wondering if there is perhaps an elegant solution out there.</p>
<p>Ideally I need to be able to take two hashs like so:</p>
<pre><code>element1 = {:name => "Original", :description => "The original one!"}
element2 = {:name => "Original", :description => "The new one!"}
</code></pre>
<p>And be able to compare/diff them and get something back like this:</p>
<pre><code>{:description => "The new one!"}
</code></pre>
<p>Right now all I can really think of is iterating through the keys in one hash and comparing the value at that key to the corresponding key in the second hash, but that seems too brute forced.</p>
<p>Any ideas? Thanks a lot!</p>
http://stackoverflow.com/questions/1726254/why-is-javas-double-comparedouble-double-implemented-the-way-it-is2Why is Java's Double.compare(double, double) implemented the way it is?Nimnio2009-11-12T23:55:45Z2009-11-19T20:09:44Z
<p>I was looking at the implementation of compare(double, double) in the Java standard library (6). It reads:</p>
<pre><code>public static int compare(double d1, double d2) {
if (d1 < d2)
return -1; // Neither val is NaN, thisVal is smaller
if (d1 > d2)
return 1; // Neither val is NaN, thisVal is larger
long thisBits = Double.doubleToLongBits(d1);
long anotherBits = Double.doubleToLongBits(d2);
return (thisBits == anotherBits ? 0 : // Values are equal
(thisBits < anotherBits ? -1 : // (-0.0, 0.0) or (!NaN, NaN)
1)); // (0.0, -0.0) or (NaN, !NaN)
}
</code></pre>
<p>What are the merits of this implementation?</p>
http://stackoverflow.com/questions/1746132/iphone-vs-net-as-career2iphone vs .net as career [closed]Girish Kolte2009-11-17T01:57:30Z2009-11-19T18:42:16Z
<p>I have recently join the IT industry, and am a bit confused about the career for the iPhone development or .Net development. Can you suggest to me, with terms of career length?</p>