7
votes
3answers
234 views
Space-efficient in-memory structure for sorted text supporting prefix searches
I have a problem: I need space-efficient lookup of file-system data based of file path prefix. Prefix searching of sorted text, in other words. Use a trie, you say, and I thought t …
7
votes
5answers
969 views
Check if string is a prefix of a Javascript RegExp
In Javascript I have defined a regular expression and now a user is typing in a string. I want to tell him if his string still could match the RegExp if he continues typing or if h …
4
votes
6answers
716 views
How to split using a prefix character using regular expressions?
I would like to split the example string --
~Peter~Lois~Chris~Meg~Stewie
on the character '~' and have the result be
Peter
Lois
Chris
Meg
Stewie
Using a standard string split f …
3
votes
3answers
532 views
How to differentiate (when overloading) between prefix and postfix forms of operator++? (C++)
Becuase I've overloaded the operator++ for an iterator class
template
typename list::iterator& list::iterator::operator++()
{
//stuff
}
But when I try to do
list::iterat …
3
votes
4answers
490 views
About Trees and Prefix (Polish) Notation?
My MIPS Assembly class required me to read in an expression of unknown size into a Parse Tree. I've never had to deal with trees, so this is how I went around storing values:
Let …
2
votes
0answers
102 views
make install on MinGW/MSYS doesn’t like --prefix=/mingw
I've begun using MinGW/MSYS in an attempt to use some Linux libraries on Windows. Using
./configure --prefix=/mingw
make
make install
has worked well so far, but I've had two …
2
votes
3answers
102 views
PHP - extract() type
Hello,
PHP's extract() function can take on one of several extract_types. But what's the difference between extr_prefix_same and extr_prefix_if_exists? The manual makes it sound l …
2
votes
1answer
106 views
[Eclipse] Member variable prefix wrongly added to method name
Hi there,
I am using Eclipse to write some Java code and the naming convention that I am following uses an 'm' as a prefix to any member variables for a class. As soon as I write …
2
votes
4answers
1k views
instance variable/ method argument naming in Objective C
What conventions are people here following for naming of instance variables and method arguments - particularly when method arguments are used to set ivars (instance variables)?
I …
1
vote
1answer
26 views
Adding a prefix to every URL in CakePHP
What's the cleanest way to add a prefix to every URL in CakePHP, like a language parameter?
http://example.com/en/controller/action
http://example.com/ru/admin/controller/action
…
1
vote
2answers
137 views
Writing expressions: Infix, Postfix and Prefix
Greetings,
My task is to write an app(unfortunatly on C) which reads expression in infix notation(with variables, unary and binary operators) and store it in memory, then evaluate …
1
vote
1answer
159 views
makefile: how to add a prefix to the basename ?
Hi all,
I have a list of file path like that:
FILE_PATH := a1.so a2.so bla/a3.so bla/a3.so bla/blo/a4.so....
I need to add a prefix to the basename in order to get:
FILE_PATH_P …
1
vote
11answers
827 views
i++ less efficient than ++i, how to show this?
I am trying to show by example that the prefix increment is more efficient than the postfix increment.
In theory this makes sense: i++ needs to be able to return the unincremented …
1
vote
5answers
116 views
Grouping in a namespace vs. prefixing Classes
Hi,
imagine a situation where you have an application that needs to import data from different sources. For each of these sources exists a seperate model (often not related to the …
1
vote
3answers
1k views
Prefix search in a radix tree/patricia trie
I'm currently implementing a radix tree/patricia trie (whatever you want to call it). I want to use it for prefix searches in a dictionary on a severely underpowered piece of hardw …
