VOOZH about

URL: https://www.geeksforgeeks.org/c/implement-itoa/

⇱ Implement Your Own itoa() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Implement Your Own itoa()

Last Updated : 27 Sep, 2023

The itoa function converts an integer into a null-terminated string. It can convert negative numbers too. It is a standard library function that is defined inside stdlib.h header file.

Syntax of itoa in C

char* itoa(int num, char* buffer, int base);

In this article, we create a C Program to implement a custom function that will be able to convert the given integer to a null-terminated string similar to itoa() function in C.

Basic Principle

Individual digits of the given number must be processed and their corresponding characters must be put in the given string. Using repeated division by the given base, we get individual digits from the least significant to the most significant digit. But in the output, these digits are needed in reverse order. Therefore, we reverse the string obtained after repeated division and return it.

Algorithm

The working algorithm for the given approach is as follows:

  • STEP 1: The number is passed to the function along with its base and destination string pointer as the arguments.
  • STEP 2A: If the number is zero, then return the string: "0\0".
  • STEP 2B: If the number is not zero, then
  • STEP 3: Set the isNegative flag to true if the number is negative.
  • STEP 4: We get the least significant digit by evaluating the remainder of the number divided by the base.
  • STEP 5A: If the remainder is greater than 9 (i.e. base is higher than 10), then put the corresponding alphabetical character in the string.
  • STEP 5B: If the reminder is less than or equal to 9, put the corresponding numeric character in the string.
  • STEP 6: Decrease the number of digits by one by dividing the number by the base.
  • STEP 7: Repeat the steps from 4 to 6 till the number is less than or equal to zero.
  • STEP 8: Now, if the isNegative flag is true, then put a ( - ) negative sign at the end.
  • STEP 9: Put '\0' at the end of the string.
  • STEP 10: After that, reverse the string as the numbers in the string will be in reverse as compared to the actual integer.
  • STEP 11: Return the string address.
👁 working of itoa
Working of Custom itoa()

C Program to Implement Your Own itoa()


Output
Number: 1567
Base: 10 Converted String: 1567
Base: 2 Converted String: 11000011111
Base: 8 Converted String: 3037
Base: 16 Converted String: 61f

Time Complexity: O(logb num), 

Auxiliary Space: O(1)

Comment
Article Tags:
Article Tags: