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. 名企筆試題1

        時間:2023-02-24 07:07:59 筆試題目 我要投稿
        • 相關推薦

        名企筆試題1

        Sony筆試題
        1.完成下列程序
        *
        *.*.
        *..*..*..
        *...*...*...*...
        *....*....*....*....*....
        *.....*.....*.....*.....*.....*.....
        *......*......*......*......*......*......*......
        *.......*.......*.......*.......*.......*.......*.......*.......
        #include <stdio.h>
        #define N 8
        int main()
        {
        int i;
        int j;
        int k;
        ---------------------------------------------------------
        | |
        | |
        | |
        ---------------------------------------------------------
        return 0;
        }
        2.完成程序,實現對數組的降序排序
        #include <stdio.h>
        void sort( );
        int main()
        {
        int array[]={45,56,76,234,1,34,23,2,3}; //數字任//意給出
        sort( );
        return 0;
        }
        void sort( )
        {
        ____________________________________
        | |
        | |
        |-----------------------------------------------------|
        }
        3.費波那其數列,1,1,2,3,5……編寫程序求第十項。可以用遞歸,也可以用其
        他方法,但要說明你選擇的理由。
        #include <stdio.h>

        名企筆試題1

        int Pheponatch(int);
        int main()
        {
        printf("The 10th is %d",Pheponatch(10));
        return 0;
        }
        int Pheponatch(int N)
        {
        --------------------------------
        | |
        | |
        --------------------------------
        }
        4.下列程序運行時會崩潰,請找出錯誤并改正,并且說明原因。
        #include <stdio.h>
        #include <malloc.h>
        typedef struct{
        TNode* left;
        TNode* right;
        int value;
        } TNode;
        TNode* root=NULL;
        void append(int N);
        int main()
        {
        append(63);
        append(45);
        append(32);
        append(77);
        append(96);
        append(21);
        append(17); // Again, 數字任意給出
        }
        void append(int N)
        {
        TNode* NewNode=(TNode *)malloc(sizeof(TNode));
        NewNode->value=N;
        if(root==NULL)
        {
        root=NewNode;
        return;

        }
        else
        {
        TNode* temp;
        temp=root;
        while((N>=temp.value && temp.left!=NULL) || (N<temp. value && temp. right
        !=NULL
        ))
        {
        while(N>=temp.value && temp.left!=NULL)
        temp=temp.left;
        while(N<temp.value && temp.right!=NULL)
        temp=temp.right;
        }
        if(N>=temp.value)
        temp.left=NewNode;
        else
        temp.right=NewNode;
        return;
        }
        }

         

        【名企筆試題1】相關文章:

        名企筆經108-08

        名企筆試題07-12

        名企經典筆試題07-27

        名企筆試題精選07-07

        名企面試題07-31

        名企筆試題308-08

        名企筆試題608-08

        名企筆試題708-08

        名企筆試題208-08

        国产高潮无套免费视频_久久九九兔免费精品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>