Board logo

標題: [發問] 文字切割、重組 [打印本頁]

作者: andyto202    時間: 2016-7-18 01:40     標題: 文字切割、重組

大家好,有個字串如下
1 1 m2-10gb-xp-xfp up up
     2 m20-1gb-xp-sfp up up
2 1 m20-1gb-xp-sfp up up
3 1 m20-1gb-xp-sfp up up
     2 m20-1gb-xp-sfp up up
4 1 p6-10g-sfp up up
     2 p6-10g-sfp up up
5 1 m2-10gb-xp-xfp up up
     2 m20-1gb-xp-sfp up up
6 1 m1-10gb-xp-xfp up up
     2 m20-1gb-xp-sfp up up
7 1 m20-1gb-xp-sfp up up
8 1 m20-1gb-xp-sfp up up
     2 m20-1gb-xp-sfp up up
10 1 imm5-10gb-xp-xfp up up

我主要是要把每一行的前3欄截取出數字
以第1行來說
就是
1 1 2
第2行的第1欄是空格,所以值和第1行的值一樣

1 2 20
再來是
2 1 20
以此類推
最後就可以反推出PORT的集合
1/1/1
1/1/2
1/2/1
1/2/2
中間省略
1/2/20
2/1/1
中間省略
2/1/20

請問怎麼做呢??
謝謝
作者: avengertree    時間: 2020-3-2 11:50

回復 1# andyto202
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. using namespace std;

  5. int main(){
  6.     string inputString = "";
  7.     string numberString = "0123456789";
  8.     int countThree = 0, i, tempNumber;
  9.     vector<int> ans;
  10.    
  11.     while (getline(cin, inputString)) {
  12.         // 離開條件
  13.         if (inputString == "q") {
  14.             break;
  15.         }
  16.         
  17.         i = countThree = tempNumber = 0;
  18.         while (countThree < 3 && i < inputString.length()) {
  19.             // 第一個是空格,則補上一次的第一個答案
  20.             if (i == 0 && inputString[i] == ' ') {
  21.                 ans.push_back(ans[ans.size() - 3]);
  22.                 countThree++;
  23.             }
  24.             
  25.             // 比對如果是數字
  26.             if (numberString.find(inputString[i]) != numberString.npos) {
  27.                 tempNumber = tempNumber * 10 + int(inputString[i]) - 48;
  28.             }
  29.             else{
  30.                 // 不是數字,則判斷tempNumber是否有數字
  31.                 if (tempNumber != 0){
  32.                     ans.push_back(tempNumber);
  33.                     tempNumber = 0;
  34.                     countThree++;
  35.                 }
  36.             }
  37.             i++;
  38.         }
  39.     }
  40.    
  41.     // show ans
  42.     for (int j=0; j<ans.size(); j++) {
  43.         cout << ans[j] << " ";
  44.         if ((j+1) % 3 == 0) {
  45.             cout << endl;
  46.         }
  47.     }
  48.    
  49.     return 0;
  50. }
複製代碼
輸入:
1 1 m2-10gb-xp-xfp up up
     2 m20-1gb-xp-sfp up up
2 1 m20-1gb-xp-sfp up up
3 1 m20-1gb-xp-sfp up up
     2 m20-1gb-xp-sfp up up
4 1 p6-10g-sfp up up
     2 p6-10g-sfp up up
5 1 m2-10gb-xp-xfp up up
     2 m20-1gb-xp-sfp up up
6 1 m1-10gb-xp-xfp up up
     2 m20-1gb-xp-sfp up up
7 1 m20-1gb-xp-sfp up up
8 1 m20-1gb-xp-sfp up up
     2 m20-1gb-xp-sfp up up
10 1 imm5-10gb-xp-xfp up up
q

輸出:
1 1 2
1 2 20
2 1 20
3 1 20
3 2 20
4 1 6
4 2 6
5 1 2
5 2 20
6 1 1
6 2 20
7 1 20
8 1 20
8 2 20
10 1 5
作者: hcm19522    時間: 2020-3-3 14:07

https://blog.xuite.net/hcm19522/twblog/588945504
作者: avengertree    時間: 2020-3-4 00:04

回復 1# andyto202

輸出所有集合:
  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. #include <cstdlib>
  5. using namespace std;

  6. vector<int> ans;
  7. bool char_is_number(char c)
  8. {
  9.     string number_string = "0123456789";
  10.     if (number_string.find(c) != number_string.npos)
  11.     {
  12.         return true;
  13.     }
  14.     return false;
  15. }
  16. void get_three_number(string str)
  17. {
  18.     int count_three = 0, index = 0, temp_number = 0;
  19.     while (count_three < 3)
  20.     {
  21.         if (index == 0 && str[index] == ' ')
  22.         {
  23.             ans.push_back(ans[ans.size() - 3]);
  24.             count_three++;
  25.         }
  26.         else
  27.         {
  28.             if (char_is_number(str[index]))
  29.             {
  30.                 temp_number = temp_number * 10 + int(str[index]) - 48;
  31.             }
  32.             else
  33.             {
  34.                 if (temp_number != 0)
  35.                 {
  36.                     ans.push_back(temp_number);
  37.                     temp_number = 0;
  38.                     count_three++;
  39.                 }
  40.             }
  41.         }
  42.         index++;
  43.     }
  44. }
  45. int main()
  46. {
  47.     string inputString = "";
  48.     int countThree = 0, i, j;

  49.     while (getline(cin, inputString) && inputString != "q")
  50.     {
  51.         get_three_number(inputString);
  52.     }

  53.     // show ans
  54.     for (i = 0; i < ans.size(); i += 3)
  55.     {
  56.         for (j = 1; j <= ans[i + 2]; j++)
  57.         {
  58.             cout << ans[i] << "/" << ans[i + 1] << "/" << j << endl;
  59.         }
  60.         cout << endl;
  61.     }

  62.     system("PAUSE");
  63.     return 0;
  64. }
複製代碼





歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)