开发者

Error recovery algorithms? [closed]

开发者 https://www.devze.com 2023-03-28 01:00 出处:网络
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 8 ye开发者_如何学运维ars ago.

Improve this question

I am doing a software that grabs in the end a numeric string, that string encodes important data, and any error destroy the contents.

Worse: It is VERY prone for errors, because of how data is transmitted (and I can do nothing about it).

So I decided to add a verification digit of sorts... After some research, I have more questions than answers... So, someone can point me to a decent location to study more about that subject?

Also, someone know some popular algorithms that can even fix errors, or at least point where the errors are, so I can retry grabbing the data with error?

Also what I do, if the checksum data itself managed to be wrong in transmission?


  • Hamming Code
  • simple pdf explanation of hamming code

Basically for every N bits of your message, you have some check bits.

You can detect and correct errors in the check bits, based on the data, or errors in the data, based on check bits. Too many errors though, and it's just garbage. There may be a utility in your language of choice to already do this.


This can be of use: http://www.eccpage.com/

0

精彩评论

暂无评论...
验证码 换一张
取 消