比较2种组合最好的方法是什么?
我的情况:
我目前有一个string string1 = "xxxxxx";
。长度为6
个字符。每个字符值都是0
或1
或x
。我需要将此string
与另一个string
进行比较,其中1
具有相同数量的字符,但值为0
或x
string
中的 char string
表示第二个char值
0
可以是任何内容
string
中的字符0
- 仅在第二个string
1
第一个string
中的字符1
- 仅在第二个string
string pattern = 'xxxxxx';
string test1 = '010101';
// pass
string pattern = '1xxxxx';
string test2 = '010101';
// not pass
string pattern = '0xxxxx';
string test3 = '010101';
// pass
这是一个简单的例子:
public bool passCombination(string pattern, string combination)
{
bool combination_passed = true;
for (int i = 0; i < pattern.Length; i++)
{
char test_char = pattern[i];
if (test_char != 'x' && combination[i] != test_char)
{
combination_passed = false;
break;
}
}
return combination_passed;
}
我已经为它做了一个功能:
char
这很简单。基本上我在char
之后正在考虑x
。如果它是regex
那么我不关心第二个字符串中的值。如果它是其他字符 - 然后比较。
由于这是一个基于字符串的方法,我正在考虑其他解决方案吗?在我的真实场景中,我必须执行约(约700k这样的检查* ~150万次)。这个非常乐观的数字:)
我在考虑int[]
比较或将所有组合保存到hashes
数组中并进行比较。或者也许可以使用20%
完成一些魔术?
所以可能提高性能至少还有3个其他选项。任何人都可以提出更高效的解决方案吗?
修改
我确实进行过比较测试。随着旧的aproach我得到2.5分钟的执行时间和下面建议的新的aproach(接受的答案) - 大约2分钟。它的性能提升约为import http.cookies
c = http.cookies.SimpleCookie()
c.load('currency=USD;country=UY')
data = {key: c[key].value for key in c}
print(data) # {'country': 'UY', 'currency': 'USD'}
。
答案 0 :(得分:4)
首先,确保在浪费时间编写过于聪明的代码之前确实需要优化任何内容,以节省浪费的周期。
但是如果你确实需要进行优化,你可以随时抽出一些东西。它通常比循环播放更快,而且在极少数情况下,它不会让任何读取代码的人看起来更快。
警告:如果您从未或很少会比较任何给定的&#34;值&#34;字符串不止一次,这种方法没有优势,因为编译涉及到仍然循环遍历字符串。
如果您遇到性能问题,可以编译&#34;将模式分为两个整数:一个模式为每个1
1
,每0
或0
x
;另一个是每个0
x
的掩码,1
或0
1
。你每个整数浪费26位,但我不会告诉任何人。
然后将值编译为整数:1
1
,0
0
。
编写一个具有那些模式/掩码整数的类,以及一个将它们与值int进行比较的方法。你会&#34;预编译&#34; &#34;价值观&#34;并将它们存储为整数而不是字符串,或者可能是具有int属性和字符串属性的类,如果您需要显示它们(或者您可以编写一个函数将这些int转换回字符串) 。
public class PatternMatcher
{
public PatternMatcher(String pattern)
{
Pattern = CompilePattern(pattern);
Mask = CompileMask(pattern);
}
#region Fields
// Could we save any cycles by making these fields instead of properties?
// I think the optimizer is smarter than that.
public int Pattern { get; private set; }
public int Mask { get; private set; }
#endregion Fields
public bool CheckValue(String value)
{
return CheckValue(CompileValue(value));
}
public bool CheckValue(int value)
{
// a & b: Bitwise And
// Any bit that's "true" in both numbers is "true" in the result.
// Any bit that's "false" in EITHER number is "false" in the result.
// 11 & 11 == 11
// 11 & 01 == 01
// 11 & 10 == 10
// 11 & 00 == 00
// 01 & 11 == 01
// 01 & 01 == 01
// 01 & 10 == 00
// 01 & 00 == 00
// So xx0011 ->
// Pattern: 000011
// Mask: 001111
// Value 110011
// (110011 & 001111) == 000011
// (000011 & 001111) == 000011
//
// 000011 == 000011, so these two match.
return (value & Mask) == (Pattern & Mask);
}
public static int CompileMask(string patternString)
{
int mask = 0;
int bitoffset = 0;
// For each character in patternString, set one bit in mask.
// Start with bit zero and move left one bit for each character.
// On x86, these bits are in reverse order to the characters in
// the strings, but that doesn't matter.
foreach (var ch in patternString)
{
switch (ch)
{
// If the pattern has a '0' or a '0', we'll be examining that
// character in the value, so put a 1 at that spot in the mask.
case '1':
case '0':
// a | b: Bitwise OR: If a bit is "true" in EITHER number, it's
// true in the result. So 0110 | 1000 == 1110.
// a << b: Bitwise left shift: Take all the bits in a and move
// them leftward by 1 bit, so 0010 << 1 == 0100.
//
// So here we shift 1 to the left by some number of bits, and
// then set that bit in mask to 1.
mask |= 1 << bitoffset;
break;
// If it's an 'x', we'll ignore that character in the value by
// putting a 0 at that spot in the mask.
// All the bits are zero already.
case 'x':
break;
default:
throw new ArgumentOutOfRangeException("Invalid pattern character: " + ch);
}
++bitoffset;
}
return mask;
}
public static int CompilePattern(string patternString)
{
int pattern = 0;
int bitoffset = 0;
foreach (var ch in patternString)
{
// For each character in patternString, set one bit in pattern.
// Start with bit zero and move left one bit for each character.
switch (ch)
{
// If the pattern has a 1, require 1 in the result.
case '1':
pattern |= 1 << bitoffset;
break;
// For 0, require 0 in the result.
case '0':
// All the bits were zero already so don't waste time setting
// it to zero.
break;
// Doesn't matter what we do for 'x', since it'll be masked out.
// Just don't throw an exception on it.
case 'x':
break;
default:
throw new ArgumentOutOfRangeException("Invalid pattern character: " + ch);
}
++bitoffset;
}
return pattern;
}
public static int CompileValue(string valueString)
{
int value = 0;
int bitoffset = 0;
// For each character in patternString, set one bit in mask.
// Start with bit zero and move left one bit for each character.
foreach (var ch in valueString)
{
switch (ch)
{
// If the value has a '1', have a 1 for that bit
case '1':
value |= 1 << bitoffset;
break;
// If the value has a '0', leave a 0 for that bit
// All the bits were zero already.
case '0':
break;
default:
throw new ArgumentOutOfRangeException("Invalid pattern character: " + ch);
}
++bitoffset;
}
return value;
}
}
显然,如果你不能预先编制你的价值观并将它们存储为整数,那么你就浪费了你的时间(这是一个很大的问题,如果&#34;)。但是如果可以的话,你可以为每个模式创建一个,并在循环中使用700k +次。这可能比循环超过700k +次的字符串更快。
答案 1 :(得分:0)
感觉问题可能会遗漏一些重要信息。例如,如果值存储在数据库中,则存储过程应该比加载内存中的所有数据更快。
另一方面,将数据加载到内存中可以让您更好地控制缓存(保存哈希表或数组中已检查的组合)和并行度(同时检查不同处理器或机器上不同的数据部分)
此外,如果您要检查大约一百万种模式与大约一百万种组合,那么有更好的算法可以将当前复杂度从O(n ^ 2)提高到更接近O(n)http://bigocheatsheet.com/#chart < / p>
对于模式和组合的比较,你现在所拥有的应该比将字符串转换为整数要快一点。如果您将一种模式与多种组合进行比较,那么可以加快一点的速度就是保存非x
的位置并仅比较它们。例如:
foreach ( string pattern in patterns )
{
// save the non x indexes
var indexes = new List<int>();
for (int i = 0; i < pattern.Length; i++)
if (pattern[i] != 'x')
indexes.Add(i);
foreach ( string combination in combinations )
{
bool combination_passed = true;
foreach (int i in indexes)
{
if (combination[i] != pattern[i])
{
combination_passed = false;
break;
}
}
// ...
}
}