How to handle big integers in C

后端 未结 5 1502
无人及你
无人及你 2021-01-13 13:26

I want to implement cryptography algorithms. So I need a suitable data type to handle integers with a lot of digits.

Many recent languages, such as Java, Python and

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-13 13:33

    It will be easier to deal with an array of characters. Its a good idea to devise your own class (/datatype), defining functions to deal with the all arithmetic operations for future use. You could use this one designed by ACRush for reference.

提交回复
热议问题