Tagged Questions
The matching tag has no wiki summary.
13
votes
6answers
322 views
How do I go about building a matching algorithm?
I've never built an algorithm for matching before and don't really know where to start. So here is my basic set up and why I'm doing it. Feel free to correct me if I'm not asking the right questions.
...
9
votes
2answers
745 views
Can a range be matched in Scala?
Is it possible to match a range of values in Scala?
For example:
val t = 5
val m = t match {
0 until 10 => true
_ => false
}
m would be true if t was between 0 and 10, but false ...
8
votes
5answers
174 views
Compare two numbers for “likeness”
This is part of a search function on a website. So im trying to find a way to get to the end result as fast as possible.
Have a binary number where digit order matters.
Input Number = 01001
Have a ...
8
votes
5answers
444 views
Most efficient way in Python to iterate over a large file (10GB+)
I'm working on a Python script to go through two files - one containing a list of UUIDs, the other containing a large amount of log entries - each line containing one of the UUIDs from the other file. ...
8
votes
3answers
247 views
C# GetHashCode question
What would be the best way to override the GetHashCode function for the case, when
my objects are considered equal if there is at least ONE field match in them.
In the case of generic Equals method ...
8
votes
5answers
353 views
Pattern Matching and Recursion
I am new to both Haskell and programming. My question about binding in pattern-matched, recursive functions. For instance, suppose I have a function which checks whether a given list (x:xs) is a ...
7
votes
0answers
106 views
A good collaborative filtering/matching/recommendation library for Python/Django?
I'm looking for a library I can use to match my users to other Django models based on answers to questions-- also my own django model.
So I'd like something customizable, with good ...
7
votes
1answer
191 views
Trying to build a regular expression to check pattern - 2
I was wondering if more checks could be added: [Previously answered question](
Trying to build a regular expression to check pattern).
The above problem is brilliantly solved using this regex by ...
7
votes
4answers
135 views
Do not merge the context of contiguous matches with grep
If I run grep -C 1 match over the following file:
a
b
match1
c
d
e
match2
f
match3
g
I get the following output:
b
match1
c
--
e
match2
f
match3
g
As you can see, since the context around the ...
7
votes
3answers
624 views
Java generics - implementing higher order functions like map
I decided to write some common Higher Order Functions in Java (map, filter, reduce, etc.) that are type safe via generics, and I'm having problems with wildcards matching in one particular function.
...
7
votes
2answers
407 views
Worker Scheduling Algorithm
The Problem
Here's the essence of the problem I want to solve. We have workers taking care of children in a nursery for set times during the weekend. There's 16 different slots to fill in one ...
6
votes
3answers
68 views
Null and IN() provides unexpected results
This seems so basic, I'm flabbergasted for lack of a better word. I have two tables, let's call them albums and artists
CREATE TABLE `albums` (
`album_id` bigint(20) NOT NULL AUTO_INCREMENT,
...
6
votes
4answers
897 views
Algorithm to match preferred partners into groups of three
What's a good algorithm to solve this problem?
I have three groups of people - group A, group B, and group C. There are the same number of people in each group. They each have a list of people in the ...
5
votes
1answer
58 views
Matching fuzzy strings
I have two tables that I need to merge together in PostgreSQL, on the common variable "company name." Unfortunately many of the company names don't match exactly (i.e. MICROSOFT in one table, ...
5
votes
3answers
214 views
Pattern matching functions in Clojure?
I have used erlang in the past and it has some really useful things like pattern matching functions or "function guards". Example from erlang docs is:
fact(N) when N>0 ->
N * fact(N-1);
...
5
votes
2answers
203 views
F#. Tuple or not
I’ve just started learning F#.
I wonder how can I determine whether the argument of a function is a tuple?
let tuple = (1, 2)
let notTuple = 3
let isTuple t = // returns 'true' if t is a tuple, ...
5
votes
1answer
89 views
Emacs matching tags highlighting
When Paren Match Highlighting (in the Options menu) is enabled, it nicely highlights matched parentheses. Is there something like this but for XML tags? For example, if I had:
<para> ...
5
votes
2answers
180 views
.NET regex matching
Broadly: how do I match a word with regex rules for a)the beginning, b)the whole word, and c)the end?
More specifically: How do I match an expression of length >= 1 that has the following rules:
It ...
5
votes
1answer
308 views
Word matching in SQL Server
I have a requirement to provide a suggested match between data in two database tables. The basic requirement is;
- A "match" should be suggested for the highest number of matched words (irrespective ...
5
votes
4answers
172 views
Dominoes matching algorithm
Given some inputs, which consist of a left and right symbol, output chains which link the inputs.
Imagine the inputs to be dominoes which you cannot flip horizontally and need to chain them together. ...
5
votes
2answers
329 views
ocaml pattern match question
I'm trying to write a simple recursive function that look over list and return a pair of integer. This is easy to write in c/c++/java but i'm new to ocaml so somehow hard to find out the solution due ...
5
votes
2answers
262 views
How do you code up a pattern matching code block in scala?
How do you code a function that takes in a block of code as a parameter that contains case statements? For instance, in my block of code, I don't want to do a match or a default case explicitly. I am ...
4
votes
1answer
99 views
Ocaml: Bad style, all clauses in this pattern-matching are guarded
I get a "Error: Warning 25: bad style, all clauses in this pattern-matching are guarded"
What does "guarded" mean?
My code has pattern matching-
match z with
| y when List.length z = 0 -> ...
4
votes
3answers
94 views
postgres find zip codes near specific zip code
Assuming a Postgres Table containing zip as varchar(10) I want to get either all results matching a specific zip or extend my results with entries close to the queried one in case there are not enough ...
4
votes
3answers
95 views
regular expression
I created a regular expression for the format XX-XX-XX-XX-XX.
where XX is a alphanumeric.
Regular expression is ^[a-z0-9A-Z]{2}-[a-z0-9A-Z]{2}-[a-z0-9A-Z]{2}-[a-z0-9A-Z]{2}$.
But what i really want ...
4
votes
2answers
201 views
Optimize SQL Query
I have problem with optimize this query:
SET @SEARCH = "dokumentalne";
SELECT SQL_NO_CACHE
`AA`.`version` AS `Version` ,
`AA`.`contents` AS `Contents` ,
`AA`.`idarticle` AS `AdressInSQL` ,
`AA` ...
4
votes
3answers
189 views
template function matching in g++
I'm having an odd problem, and am wondering why g++ 4.1.2 is behaving the way it does.
Stripped to its essentials:
#include <iostream>
template<typename T>
inline void f(T x) { ...
4
votes
2answers
501 views
Hungarian algorithm in Python
Is there good implementation of Hungarian algorithm in standard python libraries?
4
votes
4answers
584 views
Find matching bracket with Regex
The input is a string representing a list of elements.
A list is defined as an open curly { followed by 0 or more elements separated by whitespace followed by a closed curly }.
An element is either ...
4
votes
7answers
2k views
How can I extract a string between matching braces in Perl?
My input file is as below :
HEADER
{ABC|*|DEF {GHI 0 1 0} {{Points {}}}}
{ABC|*|DEF {GHI 0 2 0} {{Points {}}}}
{ABC|*|XYZ:abc:def {GHI 0 22 0} {{Points {{F1 1.1} {F2 1.2} {F3 1.3} {F4 1.4}}}}}
...
4
votes
2answers
224 views
Matching a string in a Large text file?
I have a list of strings about 7 million in a text file of size 152MB. I was wondering what could be best way to implement the a function that takes a single string and returns whether it is in that ...
4
votes
4answers
255 views
Type Matching in Haskell
If SomeType is defined as:
data SomeType = X {myBool :: Bool}
| Y {myString :: String}
| Z {myString :: String}
and I will update an arbitrary X, dependent of his ...
4
votes
7answers
1k 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 ...
4
votes
4answers
946 views
n-dimensional matching algorithm
Looking for some advice here. Does anyone know a good place to start looking into matching algorithm in a n-dimensional space. For example, any dating site out there must be using some sort of ...
4
votes
4answers
11k views
How do I do a fuzzy match of company names in MYSQL with PHP for auto-complete?
My users will import through cut and paste a large string that will contain company names.
I have an existing and growing MYSQL database of companies names, each with a unique company_id.
I want to ...
4
votes
7answers
2k views
Matching inexact company names in Java
I have a database of companies. My application receives data that references a company by name, but the name may not exactly match the value in the database. I need to match the incoming data to the ...
3
votes
1answer
59 views
Command-line tools to match similar portions of an image
I've got a few thousand scanned images that I am trying to crop. I'm writing a script that will crop the pictures accordingly if I can determine whether the source image is a 3x5 picture or a 4x6 ...
3
votes
2answers
90 views
Match search word accuracy possibly using the Levenshtein distance
i have a mySQL table where people add their names and their interests. I want to use some sort of word match that goes through and finds either a 100% match or a close match. Ive heard of the ...
3
votes
3answers
124 views
How can I select a FAQ entry from a user's natural-language inquiry?
I am working on an app where the user submits a series of questions. These questions are freeform text, but are based on a specific product, so I have a general understanding of the context. I have a ...
3
votes
3answers
96 views
How to create a binary vector with 1 if elements are part of the same vector?
I would like to create a so-called matching vector in R consisting of binaries. All numbers should be zero unless elements belong to the same variable. Sounds confusing? It is! :)
Here's an example:
...
3
votes
1answer
94 views
Iterating over maximum matchings
A matching in a graph is a set of pairwise vertex-disjoint edges, and it is maximum if it covers the largest possible number of vertices in the graph. There are efficient algorithms for finding such ...
3
votes
1answer
106 views
Algorithm for matching strings between two large files
I have a question regarding a search algorithm. I currently have 2 files in plain text, each one of them has at least 10 million lines. For now, each line is a string, and I want to find each string ...
3
votes
1answer
67 views
or-like feature in case … of statement? Or maybe a more generic pattern?
I've been learning Erlang for a while now, and for to learn it I'm writing a IRC bot. This IRC bot should listen to commands in the „!command“ and the „Nick: command“ form. I pre-parse the IRC ...
3
votes
2answers
133 views
Match 2 lists of strings by ressemblance
Problem
I have 2 lists of strings. I want to find the best matching pairs from my lists.
For example, I have those 2 lists:
list1 = {"a1","b1","c1"}
list2 = {"a2","b2","c2"}
I want to get the ...
3
votes
1answer
1k views
OpenCV shape matching
I'm new to OpenCV (am actually using Emgu CV C# wrapper) and am attempting to do some object detection.
I'm attempting to determine if an object matches a predefined set of objects (that I will have ...
3
votes
6answers
171 views
Best way to store pairs with weights for 500,000 users?
I'm building a site where I want to match people by common interest by calculating a weight between each users so I can determine who are the best match by selecting those who have a high weight:
...
3
votes
2answers
545 views
regular expression matching fully qualified java classes
What is the best way to match fully qualified Java name.
Like java.lang.Reflect, java.util.ArrayList, org.hibernate.Hibernate
Thanks
3
votes
2answers
152 views
Algorithms for matching based on keywords intersection
Suppose we have buyers and sellers that are trying to find each other in a market. Buyers can tag their needs with keywords; sellers can do the same for what they are selling. I'm interested in ...
3
votes
1answer
405 views
Ocaml pattern matching multiple elements in a list at once
Lets say I have a list of type integer [1; 2; 3; 4; 5; 6; 7; 8] and I want to pattern match the first three elements at once. Is there any way to do this without nested match statements?
for example, ...
3
votes
2answers
189 views
algorithm for computing the relevance of a keyword to a short text (50 - 100 words)
I want to compute the relevance of a keyword to a short description text. What would be the best approach in terms of efficiency and ease of implementation. I have a really tight deadline and using ...