精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

10個經典C語言面試基礎算法及代碼

黃工的嵌入式技術圈 ? 來源:黃工的嵌入式技術圈 ? 作者:黃工的嵌入式技術 ? 2020-01-16 11:09 ? 次閱讀

鏈接:http://www.codeceo.com/article/10-c-interview-algorithm.html

算法是一個程序和軟件的靈魂,作為一名優秀的程序員,只有對一些基礎的算法有著全面的掌握,才會在設計程序和編寫代碼的過程中顯得得心應手。

一、計算Fibonacci數列

Fibonacci數列又稱斐波那契數列,又稱黃金分割數列,指的是這樣一個數列:1、1、2、3、5、8、13、21。

C語言實現的代碼如下:

/* Displaying Fibonacci sequence up to nth term where n is entered by user. */#include int main(){ int count, n, t1=0, t2=1, display=0; printf("Enter number of terms: "); scanf("%d",&n); printf("Fibonacci Series: %d+%d+", t1, t2); /* Displaying first two terms */ count=2; /* count=2 because first two terms are already displayed. */ while (count { display=t1+t2; t1=t2; t2=display; ++count; printf("%d+",display); } return 0;}

結果輸出:

Enter number of terms: 10Fibonacci Series: 0+1+1+2+3+5+8+13+21+34+

二、回文檢查

源代碼:

/* C program to check whether a number is palindrome or not */#include int main(){ int n, reverse=0, rem,temp; printf("Enter an integer: "); scanf("%d", &n); temp=n; while(temp!=0) { rem=temp%10; reverse=reverse*10+rem; temp/=10; } /* Checking if number entered by user and it's reverse number is equal. */ if(reverse==n) printf("%d is a palindrome.",n); else printf("%d is not a palindrome.",n); return 0;} 結果輸出: Enter an integer: 1232112321 is a palindrome.

三、質數檢查

注:1既不是質數也不是合數。

源代碼:

/*Cprogramtocheckwhetheranumberisprimeornot.*/#include int main(){ int n, i, flag=0; printf("Enter a positive integer: "); scanf("%d",&n); for(i=2;i<=n/2;++i) { if(n%i==0) { flag=1; break; } } if (flag==0) printf("%d is a prime number.",n); else printf("%d is not a prime number.",n); return 0;}

結果輸出:

Enter a positive integer: 2929 is a prime number.

四、打印金字塔和三角形

使用 * 建立三角形

** ** * ** * * ** * * * * 源代碼: #include int main(){ int i,j,rows; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=1;i<=rows;++i) { for(j=1;j<=i;++j) { printf("* "); } printf(" "); } return 0;}? 如下圖所示使用數字打印半金字塔。 11 21 2 31 2 3 41 2 3 4 5

源代碼:

#include int main(){ int i,j,rows; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=1;i<=rows;++i) { for(j=1;j<=i;++j) { printf("%d ",j); } printf(" "); } return 0;}

用 * 打印半金字塔:

* * * * ** * * ** * * * **

源代碼:

#include int main(){ int i,j,rows; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=rows;i>=1;--i) { for(j=1;j<=i;++j) { printf("* "); } printf(" "); } return 0;}

用 * 打印金字塔

* * * * * * * * * * * * * * * **********

源代碼:

#include int main(){ int i,space,rows,k=0; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=1;i<=rows;++i) { for(space=1;space<=rows-i;++space) { printf(" "); } while(k!=2*i-1) { printf("* "); ++k; } k=0; printf(" "); } return 0;}

五、簡單的加減乘除計算器

源代碼:

/*Sourcecodetocreateasimplecalculatorforaddition,subtraction,multiplicationanddivisionusingswitch...casestatementinCprogramming.*/# include int main(){ char o; float num1,num2; printf("Enter operator either + or - or * or divide : "); scanf("%c",&o); printf("Enter two operands: "); scanf("%f%f",&num1,&num2); switch(o) { case '+': printf("%.1f + %.1f = %.1f",num1, num2, num1+num2); break; case '-': printf("%.1f - %.1f = %.1f",num1, num2, num1-num2); break; case '*': printf("%.1f * %.1f = %.1f",num1, num2, num1*num2); break; case '/': printf("%.1f / %.1f = %.1f",num1, num2, num1/num2); break; default: /* If operator is other than +, -, * or /, error message is shown */ printf("Error! operator is not correct"); break; } return 0;}

結果輸出:

Enter operator either + or - or * or divide : -Enter two operands: 3.48.43.4 - 8.4 = -5.0

六、檢查一個數能不能表示成兩個質數之和

源代碼:

#include int prime(int n);int main(){ int n, i, flag=0; printf("Enter a positive integer: "); scanf("%d",&n); for(i=2; i<=n/2; ++i) { if (prime(i)!=0) { if ( prime(n-i)!=0) { printf("%d = %d + %d ", n, i, n-i); flag=1; } } } if (flag==0) printf("%d can't be expressed as sum of two prime numbers.",n); return 0;} /* Function to check prime number */int prime(int n){ int i, flag=1; for(i=2; i<=n/2; ++i) if(n%i==0) flag=0; return flag;}

結果輸出:

Enter a positive integer: 3434 = 3 + 3134 = 5 + 2934 = 11 + 2334 = 17 + 17

七、用遞歸的方式顛倒字符串

源代碼:

/* Example to reverse a sentence entered by user without using strings. */#include void Reverse();int main(){ printf("Enter a sentence: "); Reverse(); return 0;} void Reverse(){ char c; scanf("%c",&c); if( c != ' ') { Reverse(); printf("%c",c); }}

結果輸出:

Enter a sentence: margorp emosewaawesome program

八、實現二進制與十進制之間的相互轉換

源代碼:

/* C programming source code to convert either binary to decimal or decimal to binary according to data entered by user. */#include #include int binary_decimal(int n);int decimal_binary(int n);int main(){ int n; char c; printf("Instructions: "); printf("1. Enter alphabet 'd' to convert binary to decimal. "); printf("2. Enter alphabet 'b' to convert decimal to binary. "); scanf("%c",&c); if (c =='d' || c == 'D') { printf("Enter a binary number: "); scanf("%d", &n); printf("%d in binary = %d in decimal", n, binary_decimal(n)); } if (c =='b' || c == 'B') { printf("Enter a decimal number: "); scanf("%d", &n); printf("%d in decimal = %d in binary", n, decimal_binary(n)); } return 0;} /* Function to convert decimal to binary.*/int decimal_binary(int n){ int rem, i=1, binary=0; while (n!=0) { rem=n%2; n/=2; binary+=rem*i; i*=10; } return binary;} /* Function to convert binary to decimal.*/int binary_decimal(int n){ int decimal=0, i=0, rem; while (n!=0) { rem = n%10; n/=10; decimal += rem*pow(2,i); ++i; } return decimal;}

結果輸出:

九、使用多維數組實現兩個矩陣的相加

源代碼:

#include int main(){ int r,c,a[100][100],b[100][100],sum[100][100],i,j; printf("Enter number of rows (between 1 and 100): "); scanf("%d",&r); printf("Enter number of columns (between 1 and 100): "); scanf("%d",&c); printf(" Enter elements of 1st matrix: "); /* Storing elements of first matrix entered by user. */ for(i=0;i for(j=0;j { printf("Enter element a%d%d: ",i+1,j+1); scanf("%d",&a[i][j]); } /* Storing elements of second matrix entered by user. */ printf("Enter elements of 2nd matrix: "); for(i=0;i for(j=0;j { printf("Enter element a%d%d: ",i+1,j+1); scanf("%d",&b[i][j]); } /*Adding Two matrices */ for(i=0;i for(j=0;j sum[i][j]=a[i][j]+b[i][j]; /* Displaying the resultant sum matrix. */ printf(" Sum of two matrix is: "); for(i=0;i for(j=0;j { printf("%d ",sum[i][j]); if(j==c-1) printf(" "); } return 0;}

結果輸出:

十、矩陣轉置

源代碼:

#include int main(){ int a[10][10], trans[10][10], r, c, i, j; printf("Enter rows and column of matrix: "); scanf("%d %d", &r, &c); /* Storing element of matrix entered by user in array a[][]. */ printf(" Enter elements of matrix: "); for(i=0; i for(j=0; j { printf("Enter elements a%d%d: ",i+1,j+1); scanf("%d",&a[i][j]); } /* Displaying the matrix a[][] */ printf(" Entered Matrix: "); for(i=0; i for(j=0; j { printf("%d ",a[i][j]); if(j==c-1) printf(" "); } /* Finding transpose of matrix a[][] and storing it in array trans[][]. */ for(i=0; i for(j=0; j { trans[j][i]=a[i][j]; } /* Displaying the transpose,i.e, Displaying array trans[][]. */ printf(" Transpose of Matrix: "); for(i=0; i for(j=0; j { printf("%d ",trans[i][j]); if(j==r-1) printf(" "); } return 0;}

結果輸出:

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • 算法
    +關注

    關注

    23

    文章

    4601

    瀏覽量

    92677
  • 基礎知識
    +關注

    關注

    0

    文章

    81

    瀏覽量

    26336
  • C語言編程
    +關注

    關注

    6

    文章

    90

    瀏覽量

    21093
  • 代碼
    +關注

    關注

    30

    文章

    4753

    瀏覽量

    68368
收藏 人收藏

    評論

    相關推薦

    PLLATINUMSIM-SW是否有相關C語言代碼進行參考?

    PLLATINUMSIM-SW是否有相關C語言代碼進行參考,以達到對器件指標的準確評估直觀顯示。
    發表于 11-11 06:20

    程序員去面試只需一技能征服所有面試官!

    車輛工程專業的研究生去面試面試官最后問他會不會嵌入式。雖然應聘的崗位不是嵌入式工程師,但看來老板還是希望他能懂點這方面的知識。這個小插曲就說明了一重要的就業
    的頭像 發表于 11-05 19:35 ?153次閱讀
    程序員去<b class='flag-5'>面試</b>只需一<b class='flag-5'>個</b>技能征服所有<b class='flag-5'>面試</b>官!

    TMS320LF240x DSP的C語言和匯編代碼快速入門

    電子發燒友網站提供《TMS320LF240x DSP的C語言和匯編代碼快速入門.pdf》資料免費下載
    發表于 10-18 10:14 ?0次下載
    TMS320LF240x DSP的<b class='flag-5'>C</b><b class='flag-5'>語言</b>和匯編<b class='flag-5'>代碼</b>快速入門

    hex文件如何查看原c語言代碼

    直接將 .hex 文件轉換回原始的 C 語言代碼是不可能的,因為 .hex 文件是二進制文件,它包含了單片機程序編譯后的機器碼,這些機器碼與原始的 C
    的頭像 發表于 09-02 10:37 ?1629次閱讀

    機器學習的經典算法與應用

    關于數據機器學習就是喂入算法和數據,讓算法從數據中尋找一種相應的關系。Iris鳶尾花數據集是一經典數據集,在統計學習和機器學習領域都經常被用作示例。數據集內包含3類共150條記錄,每
    的頭像 發表于 06-27 08:27 ?1579次閱讀
    機器學習的<b class='flag-5'>經典</b><b class='flag-5'>算法</b>與應用

    如何用C語言實現高效查找(二分法)

    今天給分享一下使用C語言實現二分算法,主要包含以下幾部分內容:二分查找算法介紹二分查找算法使用場景二分查找
    的頭像 發表于 06-04 08:04 ?992次閱讀
    如何用<b class='flag-5'>C</b><b class='flag-5'>語言</b>實現高效查找(二分法)

    C語言內存泄漏問題原理

    內存泄漏問題只有在使用堆內存的時候才會出現,棧內存不存在內存泄漏問題,因為棧內存會自動分配和釋放。C語言代碼中堆內存的申請函數是malloc。
    發表于 03-19 11:38 ?496次閱讀
    <b class='flag-5'>C</b><b class='flag-5'>語言</b>內存泄漏問題原理

    C語言實現經典排序算法概覽

    冒泡排序(英語:Bubble Sort)是一種簡單的排序算法。它重復地走訪過要排序的數列,一次比較兩元素,如果他們的順序(如從大到小、首字母從A到Z)錯誤就把他們交換過來。
    的頭像 發表于 02-25 12:27 ?424次閱讀
    <b class='flag-5'>C</b><b class='flag-5'>語言實現經典</b>排序<b class='flag-5'>算法</b>概覽

    c語言,c++,java,python區別

    C語言C++、Java和Python是四種常見的編程語言,各有優點和特點。 C語言
    的頭像 發表于 02-05 14:11 ?2262次閱讀

    怎么寫出效率高、思路清晰的C語言程序?

    要用C語言的思維方式來進行程序的構架構建 要有良好的C語言算法基礎,以此來實現程序的邏輯構架 靈活運用
    的頭像 發表于 01-02 14:20 ?532次閱讀

    C語言構建高效的嵌入式程序

    嵌入式工程師在編寫C語言程序時,需要注重效率和清晰的思路。本文將通過解析經典問題“猴子選大王”來展示如何用C語言思維方式構建高效、清晰的程序
    的頭像 發表于 12-21 09:27 ?604次閱讀

    十大排序算法總結

    排序算法是最經典算法知識。因為其實現代碼短,應該廣,在面試中經常會問到排序算法及其相關的問題。
    的頭像 發表于 12-20 10:39 ?1088次閱讀

    C語言有哪些預處理操作?

    C語言的預處理是在編譯之前對源代碼進行處理的階段,它主要由預處理器完成。預處理器是一獨立的程序,它負責對源代碼進行一些文本替換和處理,生成
    的頭像 發表于 12-08 15:40 ?587次閱讀
    <b class='flag-5'>C</b><b class='flag-5'>語言</b>有哪些預處理操作?

    C語言代碼的常用技巧

    #和##對于大部分C語言玩得還算比較溜的朋友并不是很陌生,不過能把這兩知識點游刃有余的應用到所在代碼中的每個角落,似乎并沒有幾個人能夠做到,學的時候朗朗上口,而編碼的時候卻拋之腦后。
    的頭像 發表于 12-05 09:25 ?529次閱讀
    <b class='flag-5'>C</b><b class='flag-5'>語言</b><b class='flag-5'>代碼</b>的常用技巧

    如何利用緩存讓CPU更有效率地執行代碼

    我們先來看一經典的例子(例子是C語言寫的,其他語言實現也都是差不多的)
    的頭像 發表于 12-04 15:01 ?841次閱讀
    如何利用緩存讓CPU更有效率地執行<b class='flag-5'>代碼</b>?