Tagged Questions
1
vote
2answers
43 views
Compare strings by matching words
I'd like to know if such an algorithm exists and is implemented in any database (ideally Postgres).
Levenstein matches strings, but I'd like to compare strings based on the number of matching words. ...
2
votes
1answer
43 views
String matching between complete and incomplete(or short form) strings
This question might get reported for duplicates, but I have done lots of research and haven't got anything satisfactory, so I thought its better I ask it precisely.
In my project, I need to match ...
-3
votes
1answer
63 views
Random integer in MATLAB
I need to generate an input signal with a random digital message consisting of 40320 integers from 0 to 15 using the rectangular 16QAM modulation scheme for a minimum of 101 number of errors in order ...
3
votes
2answers
120 views
Writing strend(s, t) (check if `s` ends with `t`) using pointers
I am writing an implementation of strend(s, t), which checks if a string s ends with string t.
Example, if -
char s[] = "abcdefoo";
char t[] = "foo";
then, strend(s, t) is true because "abcdefoo" ...
0
votes
1answer
54 views
Replace all spaces in a string with '%20'. Assume that the string has sufficient space at the end of the string to hold the additional characters [closed]
The question is as the titles, and I have write a code to implement this function. The code is as below, but the sentence: *(str+length_copy-1+tail_space_num) = *(str+length_copy-1); cause an error.
...
0
votes
2answers
80 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, ...
0
votes
1answer
30 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 ...
0
votes
2answers
50 views
Formatting a string based on Input and predefined values
I have 26 values's that i am considering as Special Symbol and are as with special delimeter "$" the value's can be from $A to $Z.
Same time i have a predefined template as:
I have $A,$B,$C.....
...
3
votes
2answers
87 views
Finding words around a substring
I have to extract two words before and after my substring match in a large string. For example:
sub = 'name'
str = '''My name is Avi. Name identifies who you are. It is important to have a name ...
4
votes
0answers
87 views
Input as many characters as possible in notepad with fewest keyboard typings [duplicate]
In windows notepad (or any other classic text editor), input a character need one keyboard typing, select-all,copy and paste need two(CTRL+a, CTRL+c, CTRL+v).
Note:we can use arrow keys to cancel the ...
3
votes
2answers
120 views
Java: Selection sort of String array
I am working on some sort algorithms for a school project and i have a problem .
The following code its not sorting the array,I have tried the same code with array of numbers(the only change is in the ...
1
vote
3answers
129 views
Finding length of substring
I have given n strings . I have to find a string S so that, given n strings are sub-sequence of S.
For example, I have given the following 5 strings:
AATT
CGTT
CAGT
ACGT
ATGC
...
0
votes
3answers
46 views
Compressing string to specified max chars in Java
I want to compress any string, if it has more than 50chars in it. If char size if less than 50, then let it be untouched, else it has to be compressed to required limit (50).
I will be inserting ...
3
votes
1answer
53 views
Given the pairwise edit distance of a and b and b and c, can we find the pairwise edit distance of a and c?
If we have three string a, b, c and we know ( or already calculated ) edit_distance(a,b) and edit_distance(b,c), can we efficiently calculate edit_distance(a,c) without actually comparing a and c.
...
0
votes
1answer
60 views
JavaScript find names in strings
What's a good JavaScript library for searching a given string for a large list of names.
For example, given a list of 1000 politicians names find every instance in a string and wrap it in a span.
...
1
vote
3answers
84 views
Determining if two strings are a substring of a permutation of another String
So I am trying to figure out if two strings when combined together are a substring of a permutation of another string.
I have what I believe to be a working solution but it is failing some of the ...
7
votes
3answers
109 views
Hashing same character multiple times
I'm doing a programming challenge and I'm going crazy with one of the challenges. In the challenge, I need to compute the MD5 of a string. The string is given in the following form:
n[c]: Where n is ...
2
votes
5answers
100 views
algorithms for fast string approximate matching
Given a source string s and n equal length strings, I need to find a quick algorithm to return those strings that have at most k characters that are different from the source string s at each ...
-1
votes
0answers
40 views
Find all substrings that match a wildcard containing pattern in given text
I am looking for a string matching algorithm that allows me to search for all the substrings in a text that match a pattern. The Pattern can contain one wildcard i.e. * meaning that any character can ...
0
votes
1answer
65 views
What is the time complexity for repeatedly doubling a string?
Consider the following piece of C++ code:
string s = "a";
for (int i = 0; i < n; i++) {
s = s + s; // Concatenate s with itself.
}
Usually, when analyzing the time complexity of a piece of ...
9
votes
5answers
162 views
faster string sorting with long common prefix?
I have a set of strings. 90% of them are URLs start with "http://www.". I want to sort them alphabetically.
Currently I use C++ std::sort(). but std::sort is a variant of quick-sort based on ...
0
votes
2answers
123 views
How to implement a generic hash function in C++
I am trying to implement HashTable in C++ via templates.
Here is the signature:
template<class T1, class T2>
class HashTable {
public:
void add(T1 a, T2 b);
void hashFunction(T1 key, T2 ...
1
vote
2answers
56 views
Least number characters which can make a set of strings unique
What is the least number characters (starting from 1st character) which can make a set of strings unique.
For example,
set of strings:
{
'january',
'february',
'march',
'april',
...
0
votes
2answers
140 views
Lowest cost to convert one string to another
Suppose we want to convert one string S1 to another string S2 using only 3 types of operations:
-Insert(pos,char) (costs 8)
-Delete(pos) (costs 6)
-Replace(pos,char) (costs 8)
Find the sequence of ...
0
votes
1answer
45 views
find number of string without certain substring
the problem is given N (1 <= N <= 10) string with length no more than 6, how can i calculate number of string with length L (1 <= L <= 1000000) without any of the n string as the ...
0
votes
2answers
61 views
Longest Common Prefix property
I was going through suffix array and its use to compute longest common prefix of two suffixes.
The source says:
"The lcp between two suffixes is the minimum of the lcp's of all pairs of adjacent ...
2
votes
1answer
85 views
Efficient data-structure for finding smallest substring having all the query words
My friend came across this problem in an interview . We are given a file having some sentences. The sentences have only 0-9, a-z, A-Z and full-stop(.) , We need to read the file and store it in a ...
-1
votes
4answers
110 views
A good algorithm for string comparing (like Total Commander compare)
I want to create a string compare script in c++.
Total Commander file compare function is pretty good:
How does this algorithm work?
Can somebody share a snippet for this function?
3
votes
2answers
64 views
What are elegant ways to pair characters in a string?
For example, if the initial string s is "0123456789", desired output would be an array ["01", "23", "45", "67", "89"].
Looking for elegant solutions in JavaScript.
What I was thinking (very ...
1
vote
3answers
85 views
Determing if string has all unique characters
How can i do this without using arrays?
I have this implementation, but i need to do it without using arrays, bit operations and any other C/C++ libraries.
bool IsCharDuplication(string s) {
bool ...
0
votes
1answer
127 views
Given a sequence, detect cycles within it and display [closed]
A file containing a sequence of numbers. The file can have multiple such lines.
e.g : 2 0 5 6 4 5 6 4 5 6 4
I have to print the first sequence found in each line. Ensure that there are no ...
0
votes
2answers
48 views
String datastructure supporting append, prepend and search operations
I need to build a text editor as my mini project, and I need to design a data structure or algorithm that supports following operation:
Append : Append a character at the end of the String.
Prepend ...
3
votes
6answers
97 views
Choosing a uniformly-random string with length at most n?
Suppose that I want to choose a uniformly-random string from all strings of length at most n (let's assume there's a fixed set of characters that the string can be made of, such as the letters A - Z). ...
-1
votes
2answers
140 views
Using a Sort algorithm to sort a list of strings
I'm was wondering if anyone can show me how to sort a list of strings using a sorting algorithm in alphabetical order?
I know I can simply use List<string>.Sort() however it would be great to ...
1
vote
3answers
78 views
Algorithms for string processing
I have a question which make me think about how to improve speed and memory of system.
I will describe it by example, I have this file which have some string:
<e>Customer</e>
...
-1
votes
3answers
65 views
Perl: Transfer substring positions between two strings
I'm writing a Perl programm and I've got the following problem:
I have a large list of start and end positions in a string. This positions correspond to substrings in this string. I now want to ...
5
votes
3answers
152 views
Algorithm to match one input file with given numbers of file
I had an interview last week. I was stuck in one of the question in algorithm round. I answered that question, but the interviewer did not seem convinced. That's why I am sharing the same.
Please ...
2
votes
2answers
143 views
Find simplest regular expression matching all given strings
Is there an algorithm that can produce a regular expression (maybe limited to a simplified grammar) from a set of strings such that the evaluation of all possible strings that match the regular ...
-1
votes
1answer
91 views
words from letters
am doing code in iOS, and i am facing one problem, problem is that, i have 6 letters, and I want to find the all string that generated by these 6 letters, the sequence and length of string doesn't ...
1
vote
2answers
100 views
Faster operations on a large string
Let's say I have a large random string like so...
_W:,aLH#J&A4=IY; ?RVUc?W+</59JG4WSGW6G6$QEHQ:>,*b60$BYR=D=-^8-4(0 "??YaI0Y SD9 FJ;MZ,V+'S]0:9L%;#a23cO%bMY[O6^S;ULRV2XA 8& ...
1
vote
1answer
120 views
transforming string a to string b
Given 2 strings A and B, you have to transform A to B in two operations:
delete(i, len): delete len chars starting from i from A (you can delete no chars)
insert(i, str): insert a string str in A ...
3
votes
2answers
138 views
Best way to match 4 million rows of data against each other and sort results by similarity?
We use libpuzzle ( http://www.pureftpd.org/project/libpuzzle/doc ) to compare 4 million images against each other for similarity.
It works quite well.
But rather then doing a image vs image compare ...
0
votes
3answers
85 views
Algorithm for string processing
I am looking for a algorithm for string processing, I have searched for it but couldn't find a algorithm that meets my requirements. I will explain what the algorithm should do with an example.
There ...
1
vote
2answers
63 views
Word-wise super string search for given string
For any input string, we need to find super string by word match in any order. i.e. all words in the input string has to occur in any order in output string.
e.g. given data set:
"string search"
"java ...
4
votes
4answers
123 views
Memory efficient way to store strings
Assume I have millions strings. Each string has an int value. I want to retrieve this value by input string but I don't want to store all this strings because they take a lot of space. I can't use ...
0
votes
1answer
107 views
concatenate strings
I have a big problem with my design of my algorith because i use large text file.
I have a text file that contains sequences of words.
eg
my friends
hello my friends
the world
and a second file is ...
-1
votes
1answer
174 views
Find the longest substring with contiguous characters, where the string may be jumbled
Given a string, find the longest substring whose characters are contiguous (i.e. they are consecutive letters) but possibly jumbled (i.e. out of order). For example:
Input : "owadcbjkl"
Output: "adcb"
...
0
votes
2answers
184 views
Convert an number with arbitrary length from decimal to hex in c++
I've seen several examples for converting a number from decimal to hex (or base 10 to base 16), but I have a few restrictions for what I'm trying to do. I need to be able to convert a string with a ...
1
vote
1answer
101 views
In-place replacement of a pattern in a string
In an interview I was asked a question on strings.
The problem is given a string s1= "ABCDBCCDABCD". and a pattern "BC". we have to replace this pattern with other string ("UVW" or "U"or "uv").
This ...
5
votes
2answers
145 views
Given an encoded message, count the number of ways it can be decoded
You are given an encoded message containing only numbers. You are also provided with the following mapping
A : 1
B : 2
C : 3
..
Z : 26
Given an encoded message, count the number of ways it can ...

