[問題] uint32陣列每筆資料多一個bit當flag轉換

看板 C_and_CPP
作者 s6414073
時間 2024-04-15 18:46:08
留言 10 ( 5推 0噓 5→ )
開發平台(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://www.ptt.cc/bbs/C_and_CPP/M.1713177972.A.3E9.html

留言

wulouise 不懂為什麼要這樣設計,header直接給長度不是更簡單? 04/15 19:27 1F
wulouise 而且你的程式根本沒考慮到input的carry over吧.. 04/15 19:47 2F
stupid0319 這麼簡單,還要找library? 04/15 20:41 3F
ssdoz2sk 輸出的長度應該為(len*32+30)/31,再來carry的長度會因 04/16 02:31 4F
ssdoz2sk 為你縮減儲存空間越來越長,i=1 carry 1bit,i=2 carry 04/16 02:31 5F
ssdoz2sk 2bit,直到 31bytes data 擴展成 32bytes。你 code 考 04/16 02:31 6F
ssdoz2sk 慮的 carry 長度不應該是固定的,況且你在 i++ 後又用 i 04/16 02:31 7F
ssdoz2sk nput 的 bit 0-31 蓋掉是在?? 04/16 02:31 8F
johnjohnlin c bit field是你要的嗎 04/16 07:41 9F
akasan leb128 04/16 23:50 10F

最新文章

[妮姬] 露姬的內衣迷信會是什麼?
c_chat kasumi5566
2024-09-20 13:35:35
[閒聊] 會為了比賽熬夜收看嗎
c_chat ss8901234
2024-09-20 13:33:15
[閒聊] 遊戲王MD 我484遇到鬼了?
c_chat newrookie
2024-09-20 13:30:03
[問題] 說人羅傑算人身攻擊嗎
c_chatbm ss8901234
2024-09-20 13:27:33
[妮姬] 別人的愛麗絲跟我的愛麗絲
12 15 c_chat tsucomi69
2024-09-20 13:24:35
[馬娘] 中二時期喜歡隨處決鬥
1 1 c_chat baychu
2024-09-20 13:19:43
[閒聊] 會講原來如此的女角
7 12 c_chat togs
2024-09-20 13:18:11
Re: [我推] 我推 161 文字情報+圖透
3 6 c_chat kikiwatcher
2024-09-20 13:14:31
Re: [閒聊] 回顧老任跟可樂噗大戰
3 8 c_chat ryoma1
2024-09-20 13:13:55
[蔚藍] 貓狗大戰
4 4 c_chat anpinjou
2024-09-20 13:13:44
[檢舉] acgfan 4-1
c_chatbm motw1999
2024-09-20 13:03:09