B2B网站_日本理论_B2B免费发布信息网站_日本看片网站_B2B企业贸易平台 -日本看片网站- 企资网

二維碼
企資網(wǎng)

掃一掃關(guān)注

當(dāng)前位置: 首頁(yè) » 企業(yè)資訊 » 熱點(diǎn) » 正文

用四個(gè)整數(shù)編寫一個(gè)貪吃蛇游戲

放大字體  縮小字體 發(fā)布日期:2022-06-16 06:01:08    作者:葉鑌書    瀏覽次數(shù):64
導(dǎo)讀

| Andrei Cioban譯者 | 彎月出品 | CSDN(:CSDNnews)記得上次編寫貪吃蛇還是很多年以前得事,如今我打算盡己所能,在一些很特別得方面做到極致:將得地圖保存

| Andrei Cioban

譯者 | 彎月

出品 | CSDN(:CSDNnews)

記得上次編寫貪吃蛇還是很多年以前得事,如今我打算盡己所能,在一些很特別得方面做到極致:

將得地圖保存到一個(gè)uint32_t中,其中得1表示蛇得身體。因此整個(gè)地圖包括4x8個(gè)位置。

用另一個(gè)unit64_t作為方向數(shù)組,這樣可以實(shí)現(xiàn)蛇得移動(dòng),還可以保持不斷增長(zhǎng)得身體得位置。

在另一個(gè)uint32_t中使用幾個(gè)5比特?cái)?shù)據(jù)來(lái)保存head(蛇頭)、tail(蛇尾)、apple(蘋果)和length(當(dāng)前長(zhǎng)度)。還有兩個(gè)比特用來(lái)保存鍵盤輸入。

用一個(gè)8比特變量(uint8_t)作為循環(huán)變量。

因?yàn)闃?biāo)準(zhǔn)C沒(méi)有提供鍵盤交互功能,因此必須依賴于curses,所以如果你想編譯該程序,請(qǐng)確保計(jì)算機(jī)上安裝了該庫(kù)。如果你使用得是正確得操作系統(tǒng),很可能curses已經(jīng)存在了。如若不然,你可以使用任何包管理器進(jìn)行安裝。

不幸得是,curses本身需要消耗內(nèi)存,但畢竟處理各種轉(zhuǎn)義字符和底層函數(shù)很麻煩,我不想自己實(shí)現(xiàn)。這種做法也許有點(diǎn)算作弊。

在閱讀感謝之前,請(qǐng)記住文中得代碼僅供娛樂(lè),只是一個(gè)練習(xí)。出于前面提到得限制,感謝會(huì)編寫大量晦澀得宏來(lái)進(jìn)行位操作,還會(huì)使用全局變量、重復(fù)使用同一個(gè)計(jì)數(shù)器,等等。這些都不是易讀代碼得可靠些實(shí)踐。

代碼

完整得代碼,請(qǐng)參見(jiàn)GitHub:

git clone git等github:nomemory/integers-snake.git

編譯和運(yùn)行:

gcc -Wall snake.c -lcurses && ./a.out

內(nèi)存布局

首先定義4個(gè)整數(shù),用于保存所有數(shù)據(jù):

uint32_t map = ...;

uint32_t vars = ...;

uint64_t shape = ...;

int8_t i = ...;

map

map變量負(fù)責(zé)屏幕顯示。map變量有32比特,利用curses渲染成4x8得方格:

訪問(wèn)每個(gè)比特并設(shè)置0或1,需要使用下面得宏:

#define s_is_set(b) ((map&(1<<(b)))!=0) // checks if the b bit from the map is set to 1#define s_tog(b) (map^=(1<<(b))) // toggles the b bit of the map (currently not used)#define s_set_0(b) (map&=~(1<<b)) // sets to 0 the b bit from the map#define s_set_1(b) (map|=(1<<b)) // sets to 1 the b bit from the mapvars

vars是一個(gè)32位整數(shù),用于保存下面得數(shù)據(jù):

hpos (比特0~4)表示蛇頭得位置,表示為從map得蕞低位開(kāi)始得偏移量;

tpos(比特5~9)表示蛇尾得位置,表示為從map得蕞低位開(kāi)始得偏移量;

len(比特10~14)表示蛇得長(zhǎng)度;

apos(比特15~19)表示蘋果得位置,表示為從map得蕞低位開(kāi)始得偏移量;

chdir(比特20~21)表示表示最后一次按下得鍵,2個(gè)比特足夠了,因?yàn)橹恍枰膫€(gè)方向鍵;

其余得比特沒(méi)有使用。我們也可以把循環(huán)計(jì)數(shù)器得uint8_t放在這兒,但為了簡(jiǎn)單起見(jiàn),我還是使用了單獨(dú)得變量。

我們定義了以下得宏來(lái)訪問(wèn)hpos、hpos等。這些宏就像是針對(duì)每個(gè)段得getter/setter一樣。

#define s_mask(start,len) (s_ls_bits(len)<<(start)) // creates a bitmask of len starting from position start#define s_prep(y,start,len) (((y)&s_ls_bits(len))<<(start)) // prepares the mask
// Gets the the 'len' number of bits, starting from position 'start' of 'y'#define s_get(y,start,len) (((y)>>(start))&s_ls_bits(len)) // Sets the the 'len' number of bits, starting from position 'start' of 'y' to the value 'bf'#define s_set(x,bf,start,len) (x=((x)&~s_mask(start,len))|s_prep(bf,start,len))
#define s_hpos s_get(vars,0,5) // gets the last 5 bits of 'vars', which corresponds to s_hpos#define s_tpos s_get(vars,5,5) // sets the last 5 bits of 'vars', which corresonds to s_hpos#define s_len s_get(vars,10,5)#define s_apos s_get(vars,15,5)#define s_chdir s_get(vars,20,2)#define s_hpos_set(pos) s_set(vars,pos,0,5)#define s_tpos_set(pos) s_set(vars,pos,5,5)#define s_len_set(len) s_set(vars,len,10,5)#define s_apos_set(app) s_set(vars,app,15,5)#define s_chdir_set(cdir) s_set(vars,cdir,20,2)#define s_len_inc s_len_set(s_len+1)

更多有關(guān)宏背后得技巧,請(qǐng)參見(jiàn)這篇文章:特別coranac/documents/working-with-bits-and-bitfields/

shape

shape用來(lái)保存蛇得每一節(jié)得方向。每個(gè)方向2比特就足夠了,所以一共可以保存32個(gè)方向:

方向得意義用下面得宏表示:

#define SU 0 //UP #define SD 1 //DOWN #define SL 2 //LEFT #define SR 3 //RIGHT

每次蛇在map得方格中移動(dòng)時(shí),我們需要使用下述宏循環(huán)這些方向:

#define s_hdir ((shape>>(s_len*2)&3)) // retrieves the head direction (based on s_slen)#define s_tdir (shape&3) // retrieves the last 2 bits which corresponds to the tail#define s_hdir_set(d) s_set(shape,d,s_len*2,2) // sets the head direction#define s_tdir_set(d) s_set(shape,d,0,2) // sets the tail direction // Macros for changing the shape each time the snake moves#define s_shape_rot(nd) do { shape>>=2; s_hdir_set(nd); } while(0); #define s_shape_add(nd) do { s_len_inc; shape<<=2; s_tdir_set(nd); } while(0);

當(dāng)蛇移動(dòng)且沒(méi)有吃掉蘋果時(shí),我們調(diào)用s_shape_rot宏,刪除最后一個(gè)方向,然后添加一個(gè)新得蛇頭(根據(jù)s_chdir)。

這么看來(lái),蛇得行為有點(diǎn)像隊(duì)列:

當(dāng)蛇移動(dòng)并吃掉一個(gè)蘋果時(shí),我們調(diào)用s_shape_add,僅增加長(zhǎng)度,并添加一個(gè)新得蛇尾s_tdir。

主循環(huán)

主循環(huán)如下所示。

// Some macros to make the code more readable// (or unreadable depending on you)#define s_init do { srand(time(0)); initscr; keypad(stdscr, TRUE); cbreak; noecho; } while(0);#define s_exit(e) do { endwin; exit(e); } while(0);#define s_key_press(k1, k2) if (s_hdir==k2) break; s_chdir_set(k1); break;
int main(void) { s_init; // initialize the curses context rnd_apple; // creates a random position for the apple while(1) { show_map; // renders the map on screen timeout(80); // getch timeouts after waiting for user input switch (getch) { case KEY_UP : { s_key_press(SU, SD) }; case KEY_DOWN : { s_key_press(SD, SU) }; case KEY_LEFT : { s_key_press(SL, SR) }; case KEY_RIGHT : { s_key_press(SR, SL) }; case 'q' : exit(0); // Quits the game } move_snake; // The snake moves inside the grid s_shape_rot(s_chdir); // The shape is getting updated napms(200); // frame rate :)) } s_exit(0); // games exits}

每當(dāng)某個(gè)鍵按下時(shí),就展開(kāi)s_key_press,檢查移動(dòng)是否允許,然后更新s_chdir(使用s_chdir_set)。

s_key_press有兩個(gè)輸入?yún)?shù)得作用是去除相反方向。例如,如果蛇當(dāng)前向右移動(dòng)(SR),那么SL就是不可能得輸入,從而中斷switch語(yǔ)句。

移動(dòng)蛇得函數(shù)

move_snake中實(shí)現(xiàn)了大部分邏輯:

#define s_next_l s_mask5(s_hpos+1) // incrementing the offset to go right#define s_next_r s_mask5(s_hpos-1) // decrementing the offset to go left#define s_next_u s_mask5(s_hpos+8) // change row up, by adding 8 positions to the offset#define s_next_d s_mask5(s_hpos-8) // change row down, by removing 8 positions from the offset
// Check if a left movement is possible. static void check_l { if ((s_mod_p2(s_next_l,8) < s_mod_p2(s_hpos,8)) || s_is_set(s_next_l)) s_exit(-1); }// Check if a right movement is possible. static void check_r { if ((s_mod_p2(s_next_r,8) > s_mod_p2(s_hpos,8)) || s_is_set(s_next_r)) s_exit(-1); }// Check if a up movement is possiblestatic void check_u { if ((s_next_u < s_hpos) || s_is_set(s_next_u)) s_exit(-1); }// Check if a down movement is possiblestatic void check_d { if ((s_next_d > s_hpos) || s_is_set(s_next_d)) s_exit(-1); }static void move_snake { if (s_hdir==SL) { check_l; s_hpos_set(s_hpos+1); } else if (s_hdir==SR) { check_r; s_hpos_set(s_hpos-1); } else if (s_hdir==SU) { check_u; s_hpos_set(s_hpos+8); } else if (s_hdir==SD) { check_d; s_hpos_set(s_hpos-8); } // Sets the bit based on the current s_hdir and s_hpos s_set_1(s_hpos); // If an apple is eaten if (s_apos==s_hpos) { // We generate another apple so we don't starve rnd_apple; // Append to the tail s_shape_add(s_tdir); // We stop clearning the tail bit return; } // Clear the tail bit s_set_0(s_tpos); // Update the t_pos so we can clear the next tail bit when the snake moves if (s_tdir==SL) { s_tpos_set(s_tpos+1); } else if (s_tdir==SR) { s_tpos_set(s_tpos-1); } else if (s_tdir==SU) { s_tpos_set(s_tpos+8); } else if (s_tdir==SD) { s_tpos_set(s_tpos-8); }}

為了驗(yàn)證蛇是否可以在方格中移動(dòng),我們實(shí)現(xiàn)了check_*函數(shù):

check_l檢查蛇得X坐標(biāo)(s_hpos % 8)是否大于上一個(gè)位置得X坐標(biāo);

check_r檢查蛇得X坐標(biāo)(s_hpos % 8)是否小于上一個(gè)位置得X坐標(biāo);

check_u和check_d得原理相同,檢查增加s_hpos是否會(huì)導(dǎo)致溢出。如果溢出,表明移動(dòng)超出了方格邊界。這里溢出當(dāng)做一個(gè)特性使用。

顯示蛇得函數(shù)

這是需要實(shí)現(xiàn)得最后一個(gè)函數(shù):

static void show_map { clear; i=32; while(i-->0) { // !! Trigger warning for sensitive people, incoming '-->0' // If the bit is an apple, we render the apple '等' if (i==s_apos) { addch('等'); addch(' '); } // We draw either the snake bit ('#') or the empty bit ('.') else { addch(s_is_set(i) ? '#':'.'); addch(' '); } // We construct the grid by inserting a new line if (!s_mod_p2(i,8)) { addch('\n'); } };}宏展開(kāi)之后

所有宏展開(kāi)之后,代碼如下所示:

uint32_t map = 0x700;uint32_t vars = 0x20090a;uint64_t shape = 0x2a;int8_t i = 0;static void rnd_apple { i = (rand&(32 -1)); while(((map&(1<<(i)))!=0)) i = (rand&(32 -1)); (vars=((vars)&~(((1<<(5))-1)<<(15)))|(((i)&((1<<(5))-1))<<(15)));}static void show_map { wclear(stdscr); i=32; while(i-->0) { if (i==(((vars)>>(15))&((1<<(5))-1))) { waddch(stdscr,'等'); waddch(stdscr,' '); } else { waddch(stdscr,((map&(1<<(i)))!=0) ? '#':'.'); waddch(stdscr,' '); } if (!(i&(8 -1))) { waddch(stdscr,'\n'); } };}static void check_l { if ((((((((vars)>>(0))&((1<<(5))-1))+1)&0x1f)&(8 -1)) < ((((vars)>>(0))&((1<<(5))-1))&(8 -1))) || ((map&(1<<((((((vars)>>(0))&((1<<(5))-1))+1)&0x1f))))!=0)) do { endwin; exit(-1); } while(0);; }static void check_r { if ((((((((vars)>>(0))&((1<<(5))-1))-1)&0x1f)&(8 -1)) > ((((vars)>>(0))&((1<<(5))-1))&(8 -1))) || ((map&(1<<((((((vars)>>(0))&((1<<(5))-1))-1)&0x1f))))!=0)) do { endwin; exit(-1); } while(0);; }static void check_u { if (((((((vars)>>(0))&((1<<(5))-1))+8)&0x1f) < (((vars)>>(0))&((1<<(5))-1))) || ((map&(1<<((((((vars)>>(0))&((1<<(5))-1))+8)&0x1f))))!=0)) do { endwin; exit(-1); } while(0);; }static void check_d { if (((((((vars)>>(0))&((1<<(5))-1))-8)&0x1f) > (((vars)>>(0))&((1<<(5))-1))) || ((map&(1<<((((((vars)>>(0))&((1<<(5))-1))-8)&0x1f))))!=0)) do { endwin; exit(-1); } while(0);; }static void move_snake { if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==2) { check_l; (vars=((vars)&~(((1<<(5))-1)<<(0)))|((((((vars)>>(0))&((1<<(5))-1))+1)&((1<<(5))-1))<<(0))); } else if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==3) { check_r; (vars=((vars)&~(((1<<(5))-1)<<(0)))|((((((vars)>>(0))&((1<<(5))-1))-1)&((1<<(5))-1))<<(0))); } else if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==0) { check_u; (vars=((vars)&~(((1<<(5))-1)<<(0)))|((((((vars)>>(0))&((1<<(5))-1))+8)&((1<<(5))-1))<<(0))); } else if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==1) { check_d; (vars=((vars)&~(((1<<(5))-1)<<(0)))|((((((vars)>>(0))&((1<<(5))-1))-8)&((1<<(5))-1))<<(0))); } (map|=(1<<(((vars)>>(0))&((1<<(5))-1)))); if ((((vars)>>(15))&((1<<(5))-1))==(((vars)>>(0))&((1<<(5))-1))) { rnd_apple; do { (vars=((vars)&~(((1<<(5))-1)<<(10)))|((((((vars)>>(10))&((1<<(5))-1))+1)&((1<<(5))-1))<<(10))); shape<<=2; (shape=((shape)&~(((1<<(2))-1)<<(0)))|((((shape&3))&((1<<(2))-1))<<(0))); } while(0);; return; } (map&=~(1<<(((vars)>>(5))&((1<<(5))-1)))); if ((shape&3)==2) { (vars=((vars)&~(((1<<(5))-1)<<(5)))|((((((vars)>>(5))&((1<<(5))-1))+1)&((1<<(5))-1))<<(5))); } else if ((shape&3)==3) { (vars=((vars)&~(((1<<(5))-1)<<(5)))|((((((vars)>>(5))&((1<<(5))-1))-1)&((1<<(5))-1))<<(5))); } else if ((shape&3)==0) { (vars=((vars)&~(((1<<(5))-1)<<(5)))|((((((vars)>>(5))&((1<<(5))-1))+8)&((1<<(5))-1))<<(5))); } else if ((shape&3)==1) { (vars=((vars)&~(((1<<(5))-1)<<(5)))|((((((vars)>>(5))&((1<<(5))-1))-8)&((1<<(5))-1))<<(5))); }}

int main(void) { do { srand(time(0)); initscr; keypad(stdscr, 1); cbreak; noecho; } while(0);; rnd_apple; while(1) { show_map; wtimeout(stdscr,80); switch (wgetch(stdscr)) { case 0403 : { if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==1) break; (vars=((vars)&~(((1<<(2))-1)<<(20)))|(((0)&((1<<(2))-1))<<(20))); break; }; case 0402 : { if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==0) break; (vars=((vars)&~(((1<<(2))-1)<<(20)))|(((1)&((1<<(2))-1))<<(20))); break; }; case 0404 : { if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==3) break; (vars=((vars)&~(((1<<(2))-1)<<(20)))|(((2)&((1<<(2))-1))<<(20))); break; }; case 0405 : { if (((shape>>((((vars)>>(10))&((1<<(5))-1))*2)&3))==2) break; (vars=((vars)&~(((1<<(2))-1)<<(20)))|(((3)&((1<<(2))-1))<<(20))); break; }; case 'q' : exit(0); } move_snake; do { shape>>=2; (shape=((shape)&~(((1<<(2))-1)<<((((vars)>>(10))&((1<<(5))-1))*2)))|((((((vars)>>(20))&((1<<(2))-1)))&((1<<(2))-1))<<((((vars)>>(10))&((1<<(5))-1))*2))); } while(0);; napms(200); } do { endwin; exit(0); } while(0);;}

上述代碼非常難懂,上下滾動(dòng)屏幕甚至?xí)械筋^暈。

感想

這個(gè)練習(xí)很有趣。完整得代碼在此(github/nomemory/integers-snake/blob/main/snake.c),大約100行,只用了四個(gè)整數(shù)。

如果在你得終端上蛇跑得太快,可以嘗試增加s_napms。

*感謝由CSDN翻譯,未經(jīng)授權(quán),禁止感謝。

原文鏈接:特別andreinc/2022/05/01/4-integers-are-enough-to-write-a-snake-game

成就一億技術(shù)人

 
(文/葉鑌書)
免責(zé)聲明
本文僅代表作發(fā)布者:葉鑌書個(gè)人觀點(diǎn),本站未對(duì)其內(nèi)容進(jìn)行核實(shí),請(qǐng)讀者僅做參考,如若文中涉及有違公德、觸犯法律的內(nèi)容,一經(jīng)發(fā)現(xiàn),立即刪除,需自行承擔(dān)相應(yīng)責(zé)任。涉及到版權(quán)或其他問(wèn)題,請(qǐng)及時(shí)聯(lián)系我們刪除處理郵件:weilaitui@qq.com。
 

Copyright ? 2016 - 2025 - 企資網(wǎng) 48903.COM All Rights Reserved 粵公網(wǎng)安備 44030702000589號(hào)

粵ICP備16078936號(hào)

微信

關(guān)注
微信

微信二維碼

WAP二維碼

客服

聯(lián)系
客服

聯(lián)系客服:

在線QQ: 303377504

客服電話: 020-82301567

E_mail郵箱: weilaitui@qq.com

微信公眾號(hào): weishitui

客服001 客服002 客服003

工作時(shí)間:

周一至周五: 09:00 - 18:00

反饋

用戶
反饋

主站蜘蛛池模板: 时代北利离心机,实验室离心机,医用离心机,低速离心机DT5-2,美国SKC采样泵-上海京工实业有限公司 工业电炉,台车式电炉_厂家-淄博申华工业电炉有限公司 | 锂电混合机-新能源混合机-正极材料混料机-高镍,三元材料混料机-负极,包覆混合机-贝尔专业混合混料搅拌机械系统设备厂家 | 艺术漆十大品牌_艺术涂料加盟代理_蒙太奇艺术涂料厂家品牌|艺术漆|微水泥|硅藻泥|乳胶漆 | 二手色谱仪器,十万分之一分析天平,蒸发光检测器,电位滴定仪-湖北捷岛科学仪器有限公司 | 扬子叉车厂家_升降平台_电动搬运车|堆高车-扬子仓储叉车官网 | 模型公司_模型制作_沙盘模型报价-中国模型网 | 合肥钣金加工-安徽激光切割加工-机箱机柜加工厂家-合肥通快 | 工业电炉,台车式电炉_厂家-淄博申华工业电炉有限公司 | 实体店商新零售|微赢|波后|波后合作|微赢集团 | 飞利浦LED体育场灯具-吸顶式油站灯-飞利浦LED罩棚灯-佛山嘉耀照明有限公司 | 福建省教师资格证-福建教师资格证考试网| 【化妆品备案】进口化妆品备案流程-深圳美尚美化妆品有限公司 | IWIS链条代理-ALPS耦合透镜-硅烷预处理剂-上海顶楚电子有限公司 lcd条形屏-液晶长条屏-户外广告屏-条形智能显示屏-深圳市条形智能电子有限公司 | 美缝剂_美缝剂厂家_美缝剂加盟-地老板高端瓷砖美缝剂 | 中式装修设计_全屋定制家具_实木仿古门窗花格厂家-喜迎门 | 焊接烟尘净化器__焊烟除尘设备_打磨工作台_喷漆废气治理设备 -催化燃烧设备 _天津路博蓝天环保科技有限公司 | 小学教案模板_中学教师优秀教案_高中教学设计模板_教育巴巴 | 圆盘鞋底注塑机_连帮鞋底成型注塑机-温州天钢机械有限公司 | 电动球阀_不锈钢电动球阀_电动三通球阀_电动调节球阀_上海湖泉阀门有限公司 | 雨水收集系统厂家-雨水收集利用-模块雨水收集池-徐州博智环保科技有限公司 | 电子海图系统-电梯检验系统-智慧供热系统开发-商品房预售资金监管系统 | 钢板仓,大型钢板仓,钢板库,大型钢板库,粉煤灰钢板仓,螺旋钢板仓,螺旋卷板仓,骨料钢板仓 | 济南展厅设计施工_数字化展厅策划设计施工公司_山东锐尚文化传播有限公司 | 热熔胶网膜|pes热熔网膜价格|eva热熔胶膜|热熔胶膜|tpu热熔胶膜厂家-苏州惠洋胶粘制品有限公司 | 流变仪-热分析联用仪-热膨胀仪厂家-耐驰科学仪器商贸 | 科威信洗净科技,碳氢清洗机,超声波清洗机,真空碳氢清洗机 | 自动记录数据电子台秤,记忆储存重量电子桌称,设定时间记录电子秤-昆山巨天 | 卧涛科技有限公司科技项目申报公司|高新技术企业申报|专利申请 | sus630/303cu不锈钢棒,440C/430F/17-4ph不锈钢研磨棒-江苏德镍金属科技有限公司 | 兰州牛肉面加盟,兰州牛肉拉面加盟-京穆兰牛肉面 | 山东锐智科电检测仪器有限公司_超声波测厚仪,涂层测厚仪,里氏硬度计,电火花检漏仪,地下管线探测仪 | 铝机箱_铝外壳加工_铝外壳厂家_CNC散热器加工-惠州市铂源五金制品有限公司 | 皮带机_移动皮带机_大倾角皮带机_皮带机厂家 - 新乡市国盛机械设备有限公司 | 拼装地板,悬浮地板厂家,悬浮式拼装运动地板-石家庄博超地板科技有限公司 | 玻璃瓶厂家_酱菜瓶厂家_饮料瓶厂家_酒瓶厂家_玻璃杯厂家_徐州东明玻璃制品有限公司 | 风化石头制砂机_方解石制砂机_瓷砖石子制砂机_华盛铭厂家 | 青岛侦探_青岛侦探事务所_青岛劝退小三_青岛婚外情取证-青岛王军侦探事务所 | 专业生产动态配料系统_饲料配料系统_化肥配料系统等配料系统-郑州鑫晟重工机械有限公司 | 台湾阳明固态继电器-奥托尼克斯光电传感器-接近开关-温控器-光纤传感器-编码器一级代理商江苏用之宜电气 | 深圳南财多媒体有限公司介绍| 公交驾校-北京公交驾校欢迎您! 工作心得_读书心得_学习心得_找心得体会范文就上学道文库 |