2012-03-30 64 views
1

我有地圖很多的範圍,如0-300 = 10,300-600 = 20,600-900 = 30 ... 2500000-2700000 = 7000 ......所以我可以做一個非常大的值switch-statement/if-block,但我想知道是否有更好的方法來解決這個小問題。對於大型switch語句,是否有更優雅的解決方案?

確定這裏是真正的數據表中的一小部分:

0-300 : 25 
301-600. : 45 
601-900 : 65 
901-1200. : 85 
1201-1500: 105 

1501-2000 : 133 
2001-2500 : 161 
2501-3000: 189 
3001-3500:217 
3501-4000:245 

4001-4500:273 
4501-5000:301 
5001-6000:338 
+0

0 <= 300 = 10,300 <600 = 20,300 = 10 – Pfitz 2012-03-30 09:41:31

+0

所以每300你將結果增加10?你期待1150的結果是什麼?你確定結果2500000 => 7000'?這與模式不符。 – sch 2012-03-30 09:44:29

回答

5

爲擺脫switch語句的最常見的模式是使用一本字典。就你而言,因爲你正在映射範圍,所以你將使用範圍臨界值的NSArray來代替。這是它會是什麼樣子,如果你處理整數:

NSArray *rangeCutoffs = [NSArray arrayWithObjects:[NSNumber numberWithInt:300],[NSNumberWithInt:600],...,nil]; 
NSArray *values = [NSArray arrayWithObjects:[NSNumber numberWithInt:10], [NSNumber numberWithInt:20],...,nil]; 

int mappedInt; 
for (int index=0; index <= [rangeCutoffs count]; index++) { 
    if (intToMap < [[rangeCutoffs objectAtIndex:index] intValue]) { 
     mappedInt = [[values objectAtIndex:index] intValue]; 
    } 
} 
if (mappedInt == 0) { 
    mappedInt = [[values lastObject] intValue]; 
} 

在實踐中你會想從一個plist中加載rangeCutoffsvalues,而不是硬編碼他們。

1

您可以使用表格。例如

struct Lookup 
{ 
    int min; 
    int max; 
    int value; 
}; 

struct Lookup table[] = 
{ 
    {  0,  300, 10 }, 
    {  301,  600, 20 }, 
    {  601,  900, 30 }, 
    // other ranges 
    { 2500000, 2700000, 7000 }, 
    { -1, -1, -1 } // marks the end of the table 
}; 

,然後簡單地遍歷它找到合適的範圍

int result = -1; 
for (int i = 0 ; table[i].min != -1 && result == -1 ; ++i) 
{ 
    if (table[i].min <= value && value <= table[i].max) 
    { 
     result = table[i].value; 
    } 
} 

如果這是一個非常大的表,你可以使用二進制搜索來代替。

+0

OP的預期值從10到7000(也許更多)。編寫700行代碼來定義'table'是不合理的。 – sch 2012-03-30 09:39:42

+0

@sch:他還會如何獲得所有可能的病例?他們必須在某處輸入。 – JeremyP 2012-03-30 09:41:36

+0

我使用的值僅僅是示例。這將是一些值,但我必須通過Code/Plist硬編碼它們。 – Pfitz 2012-03-30 09:46:26

0

你可以做這樣的事情(C爲例):

#include <stdio.h> 
#include <stdlib.h> 

typedef int range_type; 
typedef int value_type; 

typedef struct { 
    range_type min; 
    range_type max; 
    value_type value; 
} range_t; 

const range_t *find_range(const range_t *ranges, size_t rangesSize, 
    value_type valueToFind) 
{ 
    for (size_t i = 0; i < rangesSize; ++i) { 
     if (ranges[i].min <= valueToFind && valueToFind <= ranges[i].max) 
      return &ranges[i]; 
    } 
    return NULL; 
} 

int main() { 
    const range_t ranges[] = { 
     { 0, 300, 10 }, 
     { 301, 600, 20 }, 
     { 601, 900, 30 }, 
     { 901, 1200, 40 } 
     // And so on... 
    }; 

    value_type testValues[] = { 
      -1,     // None 
      0, 299, 300, // [ 0, 300] 
     301, 599, 600, // [301, 600] 
     601, 899, 900, // [601, 900] 
     901, 1199, 1200, // [901, 1200] 
     // And so on... 
    }; 

    for (size_t i = 0; i < sizeof(testValues)/sizeof(testValues[0]); ++i) { 
     const range_t *match = find_range(
      ranges, sizeof(ranges)/sizeof(ranges[0]), testValues[i]); 
     if (match != NULL) 
      printf("%d found at [%d..%d]\n", testValues[i], match->min, 
       match->max); 
     else 
      printf("%d not found\n", testValues[i]); 
    } 
    return EXIT_SUCCESS; 
} 

應該輸出:

-1 not found 
0 found at [0..300] 
299 found at [0..300] 
300 found at [0..300] 
301 found at [301..600] 
599 found at [301..600] 
600 found at [301..600] 
601 found at [601..900] 
899 found at [601..900] 
900 found at [601..900] 
901 found at [901..1200] 
1199 found at [901..1200] 
1200 found at [901..1200] 
相關問題