1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 華為算法工程師筆試題

        時間:2024-08-04 15:49:45 華為認證 我要投稿
        • 相關推薦

        華為算法工程師筆試題

          HCNA認證包括但不限于:網絡基礎知識,流行網絡的基本連接方法,基本的網絡建造,基本的網絡故障排除,華為路由交換設備的安裝和調試。下面是小編收集的華為算法工程師筆試題,希望大家認真閱讀!

        華為算法工程師筆試題

          1.通過鍵盤輸入一串小寫字母(a~z)組成的字符串。請編寫一個字符串過濾程序,若字符串中出現多個相同的字符,將非首次出現的字符過濾掉。

          比如字符串“abacacde”過濾結果為“abcde”。

          要求實現函數:void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr);

          【輸入】 pInputStr: 輸入字符串

          lInputLen: 輸入字符串長度

          【輸出】 pOutputStr: 輸出字符串,空間已經開辟好,與輸入字符串等長;

          【注意】只需要完成該函數功能算法,中間不需要有任何IO的輸入輸出

          示例

          輸入:“deefd” 輸出:“def”

          輸入:“afafafaf” 輸出:“af”

          輸入:“pppppppp” 輸出:“p”

          main函數已經隱藏,這里保留給用戶的測試入口,在這里測試你的實現函數,可以調用printf打印輸出

          當前你可以使用其他方法測試,只要保證最終程序能正確執行即可,該函數實現可以任意修改,但是不要改變函數原型。

          一定要保證編譯運行不受影響

          using namespace std;

          bool g_flag[26];

          void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr)

          {

          assert(pInputStr != NULL);

          int i = 0;

          if (pInputStr == NULL || lInputLen <= 1)

          {

          return;

          }

          const char *p = pInputStr;

          while(*p != '\0')

          {

          if (g_flag[(*p - 'a')])

          {

          p++;

          }else{

          pOutputStr[i++] = *p;

          g_flag[*p - 'a'] = 1;

          p++;

          }

          }

          pOutputStr[i] = '\0';

          }

          int main()

          {

          memset(g_flag,0,sizeof(g_flag));

          char input[] = "abacacde";

          char *output = new char[strlen(input) + 1];

          stringFilter(input,strlen(input),output);

          cout<

          delete output;

          return 0;

          2.通過鍵盤輸入一串小寫字母(a~z)組成的字符串。請編寫一個字符串壓縮程序,將字符串中連續出席的重復字母進行壓縮,并輸出壓縮后的字符串。

          壓縮規則:

          1、僅壓縮連續重復出現的字符。比如字符串"abcbc"由于無連續重復字符,壓縮后的字符串還是"abcbc"。

          2、壓縮字段的格式為"字符重復的次數+字符"。例如:字符串"xxxyyyyyyz"壓縮后就成為"3x6yz"。

          要求實現函數:

          void stringZip(const char *pInputStr, long lInputLen, char *pOutputStr);

          【輸入】 pInputStr: 輸入字符串

          lInputLen: 輸入字符串長度

          【輸出】 pOutputStr: 輸出字符串,空間已經開辟好,與輸入字符串等長;

          【注意】只需要完成該函數功能算法,中間不需要有任何IO的輸入輸出

          示例

          輸入:“cccddecc” 輸出:“3c2de2c”

          輸入:“adef” 輸出:“adef”

          輸入:“pppppppp” 輸出:“8p”

          using namespace std;

          void stringZip(const char *pInputStr, long lInputLen, char *pOutputStr)

          {

          const char *p = pInputStr;

          int num = 1;

          int i = 0;

          p++;

          while(*p != NULL)

          {

          while(*p == *(p-1)&& *p != NULL)

          {

          num++;

          p++;

          }

          if (num > 1)

          {

          int size = 0;

          int temp = num;

          while(num) //計算位數

          {

          size++;

          num /= 10;

          }

          num = 1;

          for (int j = size; j > 0; j--)

          {

          pOutputStr[i+j-1] = '0'+ temp%10;

          temp /= 10;

          }

          i +=size;

          pOutputStr[i++] = *(p-1);

          p++;

          }else{

          pOutputStr[i++] = *(p-1);

          p++;

          }

          }

          pOutputStr[i] = '\0';

          }

          int main()

          {

          char input[] = "cccddecc";

          char *output = new char[strlen(input) + 1];

          stringZip(input,strlen(input),output);

          cout<

          return 0;

          3.通過鍵盤輸入100以內正整數的加、減運算式,請編寫一個程序輸出運算結果字符串。

          輸入字符串的格式為:“操作數1 運算符 操作數2”,“操作數”與“運算符”之間以一個空格隔開。

          補充說明:

          1、操作數為正整數,不需要考慮計算結果溢出的情況。

          2、若輸入算式格式錯誤,輸出結果為“0”。

          要求實現函數:

          void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr);

          【輸入】 pInputStr: 輸入字符串

          lInputLen: 輸入字符串長度

          【輸出】 pOutputStr: 輸出字符串,空間已經開辟好,與輸入字符串等長;

          【注意】只需要完成該函數功能算法,中間不需要有任何IO的輸入輸出

          示例

          輸入:“4 + 7” 輸出:“11”

          輸入:“4 - 7” 輸出:“-3”

          輸入:“9 ++ 7” 輸出:“0” 注:格式錯誤

          using namespace std;

          void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr)

          {

          const char *input = pInputStr;

          char *output = pOutputStr;

          int sum = 0;

          int operator1 = 0;

          int operator2 = 0;

          char *temp = new char[5];

          char *ope = temp;

          while(*input != ' ') //獲得操作數1

          {

          sum = sum*10 + (*input++ - '0');

          }

          input++;

          operator1 = sum;

          sum = 0;

          while(*input != ' ')

          {

          *temp++ = *input++;

          }

          input++;

          *temp = '\0';

          if (strlen(ope) > 1 )

          {

          *output++ = '0';

          *output = '\0';

          return;

          }

          while(*input != '\0') //獲得操作數2

          {

          sum = sum*10 + (*input++ - '0');

          }

          operator2 = sum;

          sum = 0;

          switch (*ope)

          {

          case '+':itoa(operator1+operator2,pOutputStr,10);

          break;

          case '-':itoa(operator1-operator2,pOutputStr,10);

          break;

          default:

          *output++ = '0';

          *output = '\0';

          return;

          }

          }

          int main()

          {

          char input[] = "4 - 7";

          char output[] = " ";

          arithmetic(input,strlen(input),output);

          cout<

          return 0;

          4.輸入1--50個數字,求出最小數和最大數的和

          void sort(int a[],int n);

          int main(void)

          {

          char str[100];

          int a[N]={0};

          gets(str); //要點1:動態的輸入1--50個整數,不能確定個數,只能用字符串輸入,然后分離出來

          int i=0;

          int j=0;

          int sign=1;

          while(str[i]!='\0')

          {

          if(str[i]!=',') //輸入時要在半角輸入

          {

          if(str[i] == '-') //要點:2:有負整數的輸入

          {

          // i++; //易錯點1

          sign=-1;

          }

          else if(str[i]!='\0') //不用else的話,負號也會減去‘0’

          {

          a[j]=a[j]*10 + str[i]-'0'; //要點3:輸入的可以是多位數

          }

          }

          i++;

          if(str[i]==',' || str[i]=='\0') //這個判斷是在i自加以后

          {

          a[j]=a[j]*sign; //易錯點2

          sign=1; ////易錯點3

          j++; //j就是a數組的個數 范圍0到j-1

          }

          }

          sort(a,j);

          printf("Max number + Min number = %d",a[0]+a[j-1]);

          return 0;

          }

          void sort(int a[],int n) //選擇排序

          {

          int i,j;

          int k;

          int temp;

          for(i=0;i

          {

          k=i;

          for(j=i+1;j

          {

          if(a[k]>a[j])

          k=j;

          }

          if(i!=k)

          {

          temp = a[k];

          a[k] = a[i];

          a[i] = temp;

          }

          }

          for(i=0;i

          printf("%-5d",a[i]);

          puts("");

        【華為算法工程師筆試題】相關文章:

        華為2017筆試試題07-06

        華為認證網絡工程師模擬試題06-23

        華為認證網絡工程師模擬試題及答案09-18

        華為認證網絡工程師考試試題10-14

        華為上機試題匯總09-20

        華為筆試題及答案11-01

        華為JAVA考試試題11-01

        華為Java面試題精選10-13

        華為認證最新試題及答案08-28

        華為認證筆試題大全08-15

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>