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-07-08 09:24:31 嵌入式培訓 我要投稿
        • 相關推薦

        嵌入式工程師面試中常出現的算法

          嵌入式系統是以應用為中心,以計算機技術為基礎,并且軟硬件可裁剪,適用于應用系統對功能、可靠性、成本、體積、功耗有嚴格要求的專用計算機系統。下面YJBYS小編為大家整理了關于嵌入式工程師面試中經常出現的算法文章,希望對你有所幫助。

        嵌入式工程師面試中常出現的算法

          二分查找的代碼.

          int bfind(int* a,int len,int val)

          {

          int m = len/2;

          int l = 0;

          int r = len;

          while(l!=m && r!= m)

          {

          if(a[m] > val)

          {

          r = m;

          m = (m+l)/2;

          }

          else if(a[m] < val)

          {

          l = m;

          m = (m+r)/2;

          }

          else

          return m;

          }

          return -1; //沒有找到

          }

          寫出在母串中查找子串出現次數的代碼.

          int count1(char* str,char* s)

          {

          char* s1;

          char* s2;

          int count = 0;

          while(*str!='\0')

          {

          s1 = str;

          s2 = s;

          while(*s2 == *s1&&(*s2!='\0')&&(*s1!='0'))

          {

          s2++;

          s1++;

          }

          if(*s2 == '\0')

          count++;

          str++;

          }

          return count;

          }

          查找第一個匹配子串位置,如果返回的是s1長度len1表示沒有找到

          size_t find(char* s1,char* s2)

          {

          size_t i=0;

          size_t len1 = strlen(s1)

          size_t len2 = strlen(s2);

          if(len1-len2<0) return len1;

          for(;i {

          size_t m = i;

          for(size_t j=0;j {

          if(s1[m]!=s2[j])

          break;

          m++;

          }

          if(j==len)

          break;

          }

          return i }

          寫出快速排序或者某種排序算法代碼

          快速排序:

          int partition(int* a,int l,int r)

          {

          int i=l-1,j=r,v=a[r];

          while(1)

          {

          while(a[++i] while(a[--j]>v) if(j<=i) break;

          if(i>=j)

          break;

          swap(a[i],a[j]);

          }

          swap(a[i],a[r]);

          return i;

          }

          void qsort(int* a,int l,int r)

          {

          if(l>=r) return;

          int i = partition(a,l,r);

          qsort(a,l,i-1);

          qsort(a,i+1,r);

          }

          冒泡排序:

          void buble(int *a,int n)

          {

          for(int i=0;i {

          for(int j=1;j {

          if(a[j] {

          int temp=a[j];

          a[j] = a[j-1];

          a[j-1] = temp;

          }

          }

          }

          }

          插入排序:

          void insertsort(int* a,int n)

          {

          int key;

          for(int j=1;j {

          key = a[j];

          for(int i=j-1;i>=0&&a[i]>key;i--)

          {

          a[i+1] = a[i];

          }

          a[i+1] = key;

          }

          }

          出現次數相當頻繁

          實現strcmp函數

          int strcmp11(char* l,char* r)

          {

          assert(l!=0&&r!=0);

          while(*l == *r &&*l != '\0') l++,r++;

          if(*l > *r)

          return 1;

          else if(*l == *r)

          return 0;

          return -1;

          }

          實現字符串翻轉

          void reserve(char* str)

          {

          assert(str != NULL);

          char * p1 = str;

          char * p2 = str-1;

          while(*++p2); //一般要求不能使用strlen

          p2 -= 1;

          while(p1 {

          char c = *p1;

          *p1++ = *p2;

          *p2-- = c;

          }

          }

          將一個單鏈表逆序

          struct list_node

          {

          list_node(int a,list_node* b):data(a),next(b) //這個為了測試方便

          {}

          int data;

          list_node* next;

          };

          void reserve(list_node* phead)

          {

          list_node* p = phead->next;

          if(p == NULL || p->next == NULL) return; //只有頭節點或一個節點

          list_node* p1=p->next;

          p->next=NULL;

          while(p1!=NULL)

          {

          p = p1->next;

          p1->next = phead->next;

          phead->next = p1;

          p1 = p;

          }

          }

          測試程序:

          list lt;

          lt.phead = new list_node(0,0);

          lt.phead->next = new list_node(1,0);

          lt.phead->next->next = new list_node(2,0);

          lt.phead->next->next->next = new list_node(3,0);

          lt.reserve();

          list_node * p = lt.phead;

          while(p)

          {

          coutnext;

          }

          循環鏈表的節點對換和刪除。

          //雙向循環

          list_node* earse(list_node* node)

          {

          // if(node == rear) return node->next; //對于頭節點可判斷也可不判斷。最好加上

          list_node* next = node->next;

          next->prev = node->prev;

          node->prev->next = next;

          delete node;

          retrun next;

          }

          //單項循環

          list_node* earse(list_node* node)

          {

          // if(node == rear) return node->next; //對于頭節點可判斷也可不判斷。最好加上

          list_node* p = rear;

          while(p->next != node) p=p->next;

          p->next = node->next;

          delete node;

          retrun p->next;

          }

          將一個數字字符串轉換為數字."1234" -->1234

          int atoii(char* s)

          {

          assert(s!=NULL);

          int num = 0;

          int temp;

          while(*s>'0' && *s<'9')

          {

          num *= 10;

          num += *s-'0';

          s++;

          }

          return num;

          }

          出現次數相當頻繁

          .實現任意長度的整數相加或者相乘功能。

          void bigadd(char* num,char* str,int len)

          {

          for(int i=len;i>0;i--)

          {

          num[i] += str[i];

          int j = i;

          while(num[j]>=10)

          {

          num[j--] -= 10;

          num[j] += 1;

          }

          }

          }

          .寫函數完成內存的拷貝

          void* memcpy( void *dst, const void *src, unsigned int len )

          {

          register char *d;

          register char *s;

          if (len == 0)

          return dst;

          if ( dst > src ) //考慮覆蓋情況

          {

          d = (char *)dst + len - 1;

          s = (char *)src + len - 1;

          while ( len >= 4 ) //循環展開,提高執行效率

          {

          *d-- = *s--;

          *d-- = *s--;

          *d-- = *s--;

          *d-- = *s--;

          len -= 4;

          }

          while ( len-- )

          {

          *d-- = *s--;

          }

          }

          else if ( dst < src )

          {

          d = (char *)dst;

          s = (char *)src;

          while ( len >= 4 )

          {

          *d++ = *s++;

          *d++ = *s++;

          *d++ = *s++;

          *d++ = *s++;

          len -= 4;

          }

          while ( len-- )

          {

          *d++ = *s++;

          }

          }

          return dst;

          }

          出現次數相當頻繁

          編寫類String的構造函數、析構函數和賦值函數,已知類String的原型為:

          class String

          {

          public:

          String(const char *str = NULL); // 普通構造函數

          String(const String &other); // 拷貝構造函數

          ~ String(void); // 析構函數

          String & operate =(const String &other); // 賦值函數

          private:

          char *m_data; // 用于保存字符串

          };

          解答:

          //普通構造函數

          String::String(const char *str)

          {

          if(str==NULL)

          {

          m_data = new char[1]; // 得分點:對空字符串自動申請存放結束標志'\0'的空

          //加分點:對m_data加NULL 判斷

          *m_data = '\0';

          }

          else

          {

          int length = strlen(str);

          m_data = new char[length+1]; // 若能加 NULL 判斷則更好

          strcpy(m_data, str);

          }

          }

          // String的析構函數

          String::~String(void)

          {

          delete [] m_data; // 或delete m_data;

          }

          //拷貝構造函數

          String::String(const String &other)    // 得分點:輸入參數為const型

          {

          int length = strlen(other.m_data);

          m_data = new char[length+1];     //加分點:對m_data加NULL 判斷

          strcpy(m_data, other.m_data);

          }

          //賦值函數

          String & String::operate =(const String &other) // 得分點:輸入參數為const型

          {

          if(this == &other)   //得分點:檢查自賦值

          return *this;

          delete [] m_data;     //得分點:釋放原有的內存資源

          int length = strlen( other.m_data );

          m_data = new char[length+1];  //加分點:對m_data加NULL 判斷

          strcpy( m_data, other.m_data );

          return *this;         //得分點:返回本對象的引用

          }

          剖析:

          能夠準確無誤地編寫出String類的構造函數、拷貝構造函數、賦值函數和析構函數的面試者至少已經具備了C++基本功的60%以上!

          在這個類中包括了指針類成員變量m_data,當類中包括指針類成員變量時,一定要重載其拷貝構造函數、賦值函數和析構函數,這既是對C++程序員的基本要求,也是《Effective C++》中特別強調的條款。

          實現strcpy

          char * strcpy( char *strDest, const char *strSrc )

          {

          assert( (strDest != NULL) && (strSrc != NULL) );

          char *address = strDest;

          while( (*strDest++ = * strSrc++) != ‘\0’ );

          return address;

          }

          編寫一個函數,作用是把一個char組成的字符串循環右移n個。比如原來是“abcdefghi”如果n=2,移位后應該是“hiabcdefgh”

          函數頭是這樣的:

          //pStr是指向以'\0'結尾的字符串的指針

          //steps是要求移動的n

          void LoopMove ( char * pStr, int steps )

          {

          //請填充...

          }

          解答:

          正確解答1:

          void LoopMove ( char *pStr, int steps )

          {

          int n = strlen( pStr ) - steps;

          char tmp[MAX_LEN];

          strcpy ( tmp, pStr + n );

          strcpy ( tmp + steps, pStr);

          *( tmp + strlen ( pStr ) ) = '\0';

          strcpy( pStr, tmp );

          }

          正確解答2:

          void LoopMove ( char *pStr, int steps )

          {

          int n = strlen( pStr ) - steps;

          char tmp[MAX_LEN];

          memcpy( tmp, pStr + n, steps );

          memcpy(pStr + steps, pStr, n );

          memcpy(pStr, tmp, steps );

          }

        【嵌入式工程師面試中常出現的算法】相關文章:

        鋼琴彈奏中常出現的問題07-27

        日語口語中常出現的終助詞03-08

        直譯中常出現的五大誤區03-03

        翻譯考試中常出現的八大誤區03-03

        2016年嵌入式工程師面試題及答案「精選」03-07

        經典C語言面試算法題03-17

        嵌入式軟件工程師認證03-03

        高中英語寫作中常出現的十大語法錯誤03-30

        嵌入式技術工程師證書考試簡介06-03

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