中磊筆試題
中磊(蘇州)研發(fā)中心校園招聘試卷(B)
1、請用標準C語言實現(xiàn)一個雙向筆循環(huán)鏈表的查找與刪除,
中磊筆試題
。typedef struct doublecyclelink{
int key;
struct doublecyclelink *prev;
struct doublecyclelink *next;
}DoubleCycleLinkT;
DoubleCycleLinkT *findKey(DoubleCycleLinkT *link,int key);
遍歷整個雙向循環(huán)鏈表,將第一個與key值相同的'結點移出鏈表,并返回。
若沒有找到則返回NULL。
2、請用程序打印下列圖型
*
* *
* * *
* * * *
* * * * *
void printTriangle(const unsigned char line);
輸入行數(shù),打印三角形
3、請用標準C語言實現(xiàn)下列標準庫函數(shù),設計中不得使用其他庫函數(shù)。
char *strstr(char *str1,char *str2);
在字符串str1中,尋找字串str2,若找到返回找到的位置,否則返回NULL。
4、請問這段代碼循環(huán)多少次?
main()
{
char i=0;
while(i<10)
{
if(i<1)continue;
if(i==5)break;
i++;
}
......
}
5、用預處理指令#define聲明一個常數(shù),用以表明1年中有多少秒(忽略閏年問題)
6、請問運行main函數(shù)會有什么樣的結果?
main()
{
int x=10,y=3;
printf("%d\n",y=x/y);
}
7、有以下程序
#define P 3
void F(int x)
{
return(P*x*x);
}
main()
{
printf("%d\n",F(3+5));
}
程序運行后的輸出結果是?
8、若int占2個字節(jié),char占1個字節(jié),float占4個字節(jié),則定義如下:
struct stu
{
union{
char bj[5];
int bh[2];
}class;
char xm[8];
float cj;
}xc;
則sizeof(xc)的值為?
9、請問traceroute的工作原理
【中磊筆試題】相關文章:
1.360筆試題目
2.360筆試題目
4.中糧上海筆經
7.中金筆試題