Tagged Questions
2
votes
2answers
78 views
Improving my Java method containsSubstring(s1, s2) which finds if s2 is a substring of s1
I am a college student that was recently interviewed for an internship position. One of the things asked of me was to write a method that took two Strings as input and returned true if the second ...
0
votes
1answer
26 views
Perf. issue / Too much calls to string manipulation functions
This question is about optimizing a part of a program that I use to add in many projects as a common tool.
This 'templates parser' is designed to use a kind of text pattern containing html code or ...
0
votes
1answer
45 views
Code optimization by chosing another datastructure
I have a piece of code that needs to be optimized.
for (int i = 0; i < wordLength; i++) {
for (int c = 0; c < alphabetLength; c++) {
if (alphabet[c] != x.word.charAt(i)) {
...
0
votes
1answer
44 views
How can I optimize this String search/replace method?
I am implementing my own web server. The following method searches for server side includes and builds the html page appropriately.
public String getSSI(String content) throws IOException {
...
0
votes
1answer
58 views
Java statistics by words in long string
I'm writing a program in java to get statistics on words in a very big string(string s <= 100000). This should take less then 1 second and use less than 16 MB of memory.
import java.util.Scanner;
...
11
votes
3answers
132 views
Java - strings equals when decompiled
I decompiled some Java code the other day and found this:
String s1 = "something";
String s2 = "something_else";
if (s1 == s2) {
// Path 1
} else {
// Path 2
}
Obviously using '==' to test for ...
4
votes
4answers
120 views
c++ overhead from string concatenation
I'm reading in a text file of random ascii from an ifstream. I need to be able to put the whole message into a string type for character parsing. My current solution works, but I think i'm murdering ...
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 ...
0
votes
0answers
50 views
gcc optimization flags for strings handling (c++)
I am looking for flags for strings handling that can improve my code speed. (I am not after something special, name and a short explanation will be just fine for me).
I am working with gcc
The only ...
0
votes
1answer
82 views
Fast string split and concatenation in ruby
I have a very long string containing DNA sequence data, which is usually about 500k to 5m characters long.
I want to cut of the first n characters from the beginning and add them to the end of that ...
5
votes
4answers
123 views
Efficient replacement for substr? [closed]
Let's say we have a very large string $str, and we need to pass a significant portion of it (let's say the whole string, but without the first 3 bytes) to a function. The way to do it with substr:
...
3
votes
1answer
375 views
Longest Common Subsequence for a series of strings
For the Longest Common Subsequence of 2 Strings I have found plenty examples online and I believe that I understand the solution.
What I don't understand is, what is the proper way to apply this ...
2
votes
6answers
94 views
remove chars in string except last
I'm tring to remove the char '.' from a string except the last occurrence; for example the string
12.34.56.78
should became
123456.78
I'm using this loop:
while (value != null && ...
0
votes
1answer
136 views
Optimizing MasterMind Code and string operations in python
I am writing a solver for MasterMind in which I must take in a guess and an answer and return some representation of the number of black and white pegs where a black peg represents a correct color in ...
2
votes
2answers
178 views
C#: the most efficient way to convert int[] into a string
I do know that this kind of questions have already been answered many times. Although I've found lots of possible answers, they still don't solve my problem, which is to implement the fastest possible ...
-4
votes
3answers
124 views
std::string optimization? [closed]
Someone want to explain me which code is faster ? and what is the best way to optimise a string assignment ?
code 1 :
std::string result;
int main()
{
for(int i=0;i<1000;i++)
{
/*some ...
0
votes
1answer
4k views
Android Read File As String
I need to load an xml file as String in android so I can load it to TBXML xml parser library and parse it. The implementation I have now to read the file as String takes around 2seconds even for a ...
9
votes
3answers
328 views
How can I optimize the code to always use the same reference to a String without increasing the memory usage?
I am working on an application that has a lot of duplicate Strings and my task is to eliminate them to decrease memory usage. My first thought was to use String.intern to guarantee that only one ...
2
votes
2answers
121 views
const string a = “tmp” vs const string& a = “tmp”
I had this discussion with a colleague of mine on this. And would like to know the opinion of more folks as to which is "can" be more optimal?
PS: If the code is just a hello world program, the -O3 ...
3
votes
1answer
108 views
How do I handle duplicate strings in Android to reduce memory usage?
I just started using the Memory Analyzer Tool (MAT) to see if I can optimize my Android app. It displays weather data obtained from XML files from the internet. I'm seeing a large number of Duplicate ...
0
votes
3answers
117 views
fast way to generate a combination of strings
we're going to generate all possible math equations today.
Given a a syntax like this: [1,0][+,-][2,3] which means we need all strings with 1 or 0 as first character, + or - as second character, and ...
0
votes
1answer
113 views
complexity of contructing an inverted index list
Given n strings S1, S2, ..., Sn, and an alphabet set A={a_1,a_2,....,a_m}. Assume that the alphabets in each string are all distinct. Now I want to create an inverted-index for each a_i (i=1,2...,m). ...
1
vote
2answers
582 views
Most efficient VBA code to convert string variable to integer
I have the following code that converts a string of the following format:
"G##" to an integer ##
Dim str As String
Dim int As Integer
str = "G14"
int = CInt(Right(str, Len(str) - 1))
But this is ...
0
votes
2answers
152 views
String manipulation performance and speed
Below are three methods I have written for my RichTextBox derived class, which is a syntax highlighter. There is a shared copy, lcpy_strLine, of the current line of the richtextbox in all upper case. ...
0
votes
1answer
69 views
DDMS java profiler says: java/lang/StringBuilder.<init> - Where is it in my code?
I have the following java method, written for an android application.
private String removeWifiFudge(String message, String removedFudge)
{
int find1 = 255; //FF
int find2 = 0; //00
...
0
votes
1answer
55 views
Optimize String Replacement in an Array
I have a table which contains a set of templates. These templates have placeholders which need to be replaced at runtime given a key,value pair array. Here's my code for making the replacements:
...
0
votes
3answers
105 views
What's more efficient: string searches, or joins through SQL?
I have two lists of words and I need to find matches (intersection of the two sets.)
Should I store each list as a string and find matches through string functions (like a regular expression) or store ...
2
votes
4answers
318 views
Optimizing String Matching Algorithm
function levenshtein(a, b) {
var i,j,cost,d=[];
if (a.length == 0) {return b.length;}
if (b.length == 0) {return a.length;}
for ( i = 0; i <= a.length; i++) {
d[i] = new Array();
...
2
votes
5answers
254 views
Are string concatenations using + optimized to a StringBuilder implementation in .NET?
I've read multiple places that in Java 1.5+ String concatenations are optimized to using a StringBuilder when a program is compiled. It's unclear to me if this is a standard or just a common ...
1
vote
1answer
187 views
Optimizing count of occurrence of a string
I have to count how often a certain string is contained in a cell-array. The problem is the code is way to slow it takes almost 1 second in order to do this.
uniqueWordsSize = 6; % just a sample ...
6
votes
6answers
989 views
Java split String performances
Here is the current code in my application:
String[] ids = str.split("/");
When profiling the application, I noticed that a non negligeable time is spent for splitting the string.
I also learned ...
10
votes
3answers
258 views
Is there a way to make the Jruby runtime intern all strings?
We have a java/jruby webapp running under tomcat, and I have been analyzing the number of objects and memory use by the app during runtime. I have noticed after startup the class ...
1
vote
1answer
249 views
working with large string
I am working with a large string in C#. For example, my string length is 2.000.000 characters. I have to encrypt this string. I have to save it as a text file on a hard disk. I've tried to encrypt by ...
5
votes
5answers
474 views
What is a good way to split strings here?
I have the following string:
A:B:1111;domain:80;a;b
The A is optional so B:1111;domain:80;a;b is also valid input.
The :80 is optional as well so B:1111;domain;a;b or :1111;domain;a;b are also valid ...
1
vote
4answers
171 views
is it worth to optimize Javascript code replacing strings with constants?
I often works with jquery and sometimes my code contains lot of repeated css class names, like:
$('#div1').addClass('funny-class');
...
$('#div2').addClass('funny-class');
...
...
22
votes
2answers
766 views
Meaning of acronym SSO in the context of std::string
In a C++ question about optimization and code style, several answers referred to "SSO" in the context of optimizing copies of std::string. What does SSO mean in that context?
Clearly not "single sign ...
4
votes
2answers
269 views
Optimal string containing all strings from a given set as substrings
I'm working with some code that needs a large (constant) bit array. Since it contains large constant spans (all 0's or all 1's) I've broken it into a two-level table that allows duplicate spans ...
2
votes
1answer
362 views
Optimizing converting int to base36
I currently do a lot of conversions from int into a base36 string (70%~ of programs time).
Are there any obvious optimisations to this code?
public static final String alphabet = ...
10
votes
4answers
211 views
How to get the maximum number of a particular length
I have a number, for example 1234567897865; how do I max it out and create 99999999999999 ?
I did this this way:
int len = ItemNo.ToString().Length;
String maxNumString = "";
...
4
votes
1answer
204 views
Optimizing the damerau version of the levenshtein algorithm to better than O(n*m)
Here is the algorithm (in ruby)
#http://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance
def self.dameraulevenshtein(seq1, seq2)
oneago = nil
thisrow = (1..seq2.size).to_a + ...
7
votes
6answers
261 views
the most efficient way to separate string
I have this string:
"B82V16814133260"
what would be the most efficient way to get two strings out of it:
left part String: "B82V"
rigth part string: "16814133260"
The rule is this: take all ...
1
vote
2answers
141 views
How can I shorten this PHP if statement?
I have an if statement, and I need to compare a single string with many different options. The code I post below shows what I mean pretty clear. I know 2 ways of doing this, but the other is even ...
3
votes
6answers
224 views
std::string and multiple concatenations
Let’s consider that snippet, and please suppose that a, b, c and d are non-empty strings.
std::string a, b, c, d;
d = a + b + c;
When computing the sum of those 3 std::string instances, the ...
1
vote
2answers
434 views
Non increasing and Non Decreasing Subsequence
Finding non-decreasing subsequence is well known problem.
But this Question is a slight variant of the finding longest non-decreasing subsequence. In this problem we have to find the length of longest ...
0
votes
1answer
133 views
C++ Program to be reviewed for optimization [closed]
i was approaching this problem listed here
http://www.spoj.pl/problems/HELLOKIT/
Obviously,it is not being accepted. I want to know what should i do to optimize the following code. Logic is simple ...
4
votes
3answers
89 views
Are string references duplicated? [duplicate]
Possible Duplicate:
C/C++: Optimization of pointers to string constants
Suppose you have a string "example" defined in a lot of places
// module1.h
char *x = "example";
// module2.h
char ...
2
votes
1answer
160 views
Tab completion from array of strings
I am building an IRC client and I am hoping to implement a solution to tab complete names. I have a list of users in the form of an array. When the user presses the tab key it completes the username. ...
3
votes
5answers
859 views
Best way to count char occurences in a string
Hello I am trying to write these python lines in a single line but getting some errors due to the dictionary modifications the code is doing.
for i in range(len(string)):
if string[i] in dict:
...
2
votes
1answer
65 views
Enhancing my BBCode class. How to search for special names in one loop?
NOTE: If you don't want to read this, check "TLDR" version at bottom of this comment.
I currently have a basic BBCode class.
When an user makes a comment, he can use [item] [/item] tags. Anything ...
12
votes
3answers
349 views
How lazy is Haskell's `++`?
I'm curious how I should go about improving the performance of a Haskell routine that finds the lexicographically minimal cyclic rotation of a string.
import Data.List
swapAt n = f . splitAt n where ...
