C_and_CPP 板


LINE

開發平台(Platform): (Ex: Win10, Linux, ...) Linux 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出) gcc 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...) 問題(Question): 在每一筆數據的第31bit加入flag,0表示後面還有元素,1表示後面沒有元素, 也就是最後一筆元素; 每一筆的0-30bit為數據,第31bit原本的資料會放到第二筆數據的bit0, 原本第二筆的數據0~29bit要做right shift 也就是原來第一筆數據的bit31跑到第二筆數據的的bit0, 原本第二筆數據的0-29bit變成1-30bit,第二筆的bit31仍為flag, 要設計出n個元素都能通用的函數 餵入的資料(Input): unsigned int input_data[3] = {0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF}; 預期的正確結果(Expected Output): unsigned int output_data[4] = {0x7FFFFFFF,0x7FFFFFFF,0x7FFFFFFF,0x80000007}; 錯誤結果(Wrong Output): 最後一筆應為0x80000007 實際上跑出來是0x80000000 程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔) #include <stdio.h> #include <stdlib.h> #include <stdint.h> // Define the flag bit value #define FLAG_BIT 0x80000000 // Function to convert array of unsigned integers unsigned int* convert_data(unsigned int* input_data, int len) { // Allocate memory for the output data unsigned int* output_data = (unsigned int*)malloc((len + 1) * sizeof(unsigned int)); if (output_data == NULL) { perror("Failed to allocate memory"); exit(EXIT_FAILURE); } // Convert each element for (int i = 0; i < len; i++) { // Extract the data part (lower 31 bits) of the current input element unsigned int data = input_data[i] & 0x7FFFFFFF; // Extract the flag bit of the current input element unsigned int flag = (input_data[i] >> 31) & 0x1; // Combine data and flag to form the output element output_data[i] = data; // Set the flag bit of the next element if this is not the last element if (i < len - 1) { output_data[i + 1] = (flag << 31) | (output_data[i + 1] >> 1); } } // Set the flag bit of the last element to indicate the end output_data[len] = FLAG_BIT | (output_data[len] >> 1); return output_data; } int main() { unsigned int input_data[3] = {0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF}; int len = sizeof(input_data) / sizeof(input_data[0]); // Convert the data unsigned int* output_data = convert_data(input_data, len); // Print the converted data for (int i = 0; i < len + 1; i++) { printf("output_data[%d] = 0x%08X\n", i, output_data[i]); } // Free the allocated memory free(output_data); return 0; } 補充說明(Supplement): 或是有沒有現成的library可以做這件事? --



※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 220.133.94.2 (臺灣)
※ 文章網址: https://webptt.com/m.aspx?n=bbs/C_and_CPP/M.1713177972.A.3E9.html
1F:推 wulouise: 不懂為什麼要這樣設計,header直接給長度不是更簡單? 04/15 19:27
2F:推 wulouise: 而且你的程式根本沒考慮到input的carry over吧.. 04/15 19:47
3F:→ stupid0319: 這麼簡單,還要找library? 04/15 20:41
4F:推 ssdoz2sk: 輸出的長度應該為(len*32+30)/31,再來carry的長度會因 04/16 02:31
5F:→ ssdoz2sk: 為你縮減儲存空間越來越長,i=1 carry 1bit,i=2 carry 04/16 02:31
6F:→ ssdoz2sk: 2bit,直到 31bytes data 擴展成 32bytes。你 code 考 04/16 02:31
7F:→ ssdoz2sk: 慮的 carry 長度不應該是固定的,況且你在 i++ 後又用 i 04/16 02:31
8F:→ ssdoz2sk: nput 的 bit 0-31 蓋掉是在?? 04/16 02:31
9F:推 johnjohnlin: c bit field是你要的嗎 04/16 07:41
10F:推 akasan: leb128 04/16 23:50
11F:推 Qbsuran: 類似作法在nginx有做到 他是利用malloc/calloc的最後一個 05/16 00:32
12F:→ Qbsuran: bit一定會對齊偶數, 所以就可以利用最後一個bit做flag 05/16 00:33
13F:→ Qbsuran: nginx自己實作的memory pool也是會對齊偶數 05/16 00:34
14F:→ Qbsuran: nginx實作在這 https://reurl.cc/6vvDb6 05/16 00:40
15F:→ Lipraxde: 這種 tricky 的玩法在真的很計較空間的時候再用就好了 05/16 22:40
16F:→ Lipraxde: 啦,沒事用這招瞎搞,秀完技巧後剩下的就是麻煩 05/16 22:40







like.gif 您可能會有興趣的文章
icon.png[問題/行為] 貓晚上進房間會不會有憋尿問題
icon.pngRe: [閒聊] 選了錯誤的女孩成為魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一張
icon.png[心得] EMS高領長版毛衣.墨小樓MC1002
icon.png[分享] 丹龍隔熱紙GE55+33+22
icon.png[問題] 清洗洗衣機
icon.png[尋物] 窗台下的空間
icon.png[閒聊] 双極の女神1 木魔爵
icon.png[售車] 新竹 1997 march 1297cc 白色 四門
icon.png[討論] 能從照片感受到攝影者心情嗎
icon.png[狂賀] 賀賀賀賀 賀!島村卯月!總選舉NO.1
icon.png[難過] 羨慕白皮膚的女生
icon.png閱讀文章
icon.png[黑特]
icon.png[問題] SBK S1安裝於安全帽位置
icon.png[分享] 舊woo100絕版開箱!!
icon.pngRe: [無言] 關於小包衛生紙
icon.png[開箱] E5-2683V3 RX480Strix 快睿C1 簡單測試
icon.png[心得] 蒼の海賊龍 地獄 執行者16PT
icon.png[售車] 1999年Virage iO 1.8EXi
icon.png[心得] 挑戰33 LV10 獅子座pt solo
icon.png[閒聊] 手把手教你不被桶之新手主購教學
icon.png[分享] Civic Type R 量產版官方照無預警流出
icon.png[售車] Golf 4 2.0 銀色 自排
icon.png[出售] Graco提籃汽座(有底座)2000元誠可議
icon.png[問題] 請問補牙材質掉了還能再補嗎?(台中半年內
icon.png[問題] 44th 單曲 生寫竟然都給重複的啊啊!
icon.png[心得] 華南紅卡/icash 核卡
icon.png[問題] 拔牙矯正這樣正常嗎
icon.png[贈送] 老莫高業 初業 102年版
icon.png[情報] 三大行動支付 本季掀戰火
icon.png[寶寶] 博客來Amos水蠟筆5/1特價五折
icon.pngRe: [心得] 新鮮人一些面試分享
icon.png[心得] 蒼の海賊龍 地獄 麒麟25PT
icon.pngRe: [閒聊] (君の名は。雷慎入) 君名二創漫畫翻譯
icon.pngRe: [閒聊] OGN中場影片:失蹤人口局 (英文字幕)
icon.png[問題] 台灣大哥大4G訊號差
icon.png[出售] [全國]全新千尋侘草LED燈, 水草

請輸入看板名稱,例如:BuyTogether站內搜尋

TOP