[問題] 用memcpy 會有殘餘值怎麼辦?

作者: apologize (人生在世很愜意)   2016-02-02 10:06:36
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
dev C++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
string.h
問題(Question):
我用 memcpy (Ptr->ListString, CharPtr, Length);
去餵資料,然後用link list 去存值,在只有兩個字元時,會多了殘餘值。
餵入的資料(Input):
char StringOriginalData[100] = "Abian is son of the bitch";
預期的正確結果(Expected Output):
Abian 5
is 2
son 3
of 2
the 3
bitch 5
請按任意鍵繼續 . . .
錯誤結果(Wrong Output):
Abian 5
iss 2
son 3
ofs 2
the 3
bitch 5
請按任意鍵繼續 . . .
程式碼(Code):(請善用置底文網頁, 記得排版)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char StringOriginalData[100] = "Abian is son of the bitch";
char StringChange[10] = "are";
typedef struct _VOCABULARY_LIST {
char *ListString;
struct _VOCABULARY_LIST *Node;
}VOCABULARY_LIST;
void TearOffAndAdd (VOCABULARY_LIST *Ptr);
int main (int argc, char *argv[]) {
VOCABULARY_LIST *FirstVocabulary;
VOCABULARY_LIST *PtrVocabulary;
FirstVocabulary = (VOCABULARY_LIST *)malloc (sizeof (VOCABULARY_LIST));
PtrVocabulary = FirstVocabulary;
PtrVocabulary->Node = NULL;
TearOffAndAdd (PtrVocabulary);
system("PAUSE");
return 0;
}
void TearOffAndAdd (VOCABULARY_LIST *Ptr) {
char *CharPtr;
VOCABULARY_LIST *NewList;
int Length;
CharPtr = StringOriginalData;
Length = strcspn (CharPtr, " ");
while (Length != 0) {
Ptr->ListString = (char *)malloc (Length * sizeof(char));
memcpy (Ptr->ListString, CharPtr, Length);
printf ("%s", Ptr->ListString);
printf (" %d\n",Length);
NewList = malloc (sizeof (VOCABULARY_LIST));
NewList->Node = NULL;
Ptr->Node = NewList;
Ptr = NewList;
CharPtr += (Length + 1);
Length = strcspn (CharPtr, " ");
}
}
補充說明(Supplement):
這到底怎麼回事?
作者: ncoomb (倫)   2016-02-02 11:08:00
is 2(四個字元);iss 2(五個字元;
作者: hichcock (快樂一整年 ^^~~~)   2016-02-02 11:43:00
有一種東西叫 "結束字元"
作者: remuswu1019 (remus)   2016-02-02 11:55:00
我用你提供的程式碼編譯,執行結果正常耶!
作者: apologize (人生在世很愜意)   2016-02-02 12:48:00
要加這種東西喔 \0
作者: ncoomb (倫)   2016-02-02 14:22:00
我只是覺得跟len有關,不是殘值。怎不用strtok? 作業嗎?
作者: overhead (overhead)   2016-02-03 00:27:00
memcpy只是如實的複製memory裡的值喔 不會幫你生出\0另一方面%s是看\0決定結束在哪 你沒有給\0它不知道到哪結束你可以找memcpy strcpy strncpy的code比較差異
作者: uranusjr (←這人是超級笨蛋)   2016-02-03 09:50:00
為什麼要在這裡用 strcat...
作者: apologize (人生在世很愜意)   2016-02-03 09:55:00
不小心多寫出來了 =
作者: ncoomb (倫)   2016-02-03 10:12:00
恭喜啦。假設如果要效能好點的linklist,應減少使用memory的函式。你覺得如何做呢?
作者: justinj (黑旋風)   2016-02-03 13:26:00
除非要copy的東東是binary,結構之類才會去用memcpy
作者: apologize (人生在世很愜意)   2016-02-03 14:17:00
有差喔,我還以為沒差耶
作者: justinj (黑旋風)   2016-02-03 16:57:00
如果你要沒差..copy的長度=strlen()+1...這不是更煩啊...如果要部分的話是沒什麼差..
作者: LPH66 (-6.2598534e+18f)   2016-02-03 18:57:00
memcpy 丟 strlen()+1 是做兩次功...

Links booklink

Contact Us: admin [ a t ] ucptt.com