Finished chapter 2

This commit is contained in:
kdeng00
2020-10-18 21:49:20 -04:00
parent 8a8707cc35
commit ad935287dd
2 changed files with 166 additions and 0 deletions
+84
View File
@@ -0,0 +1,84 @@
/*
*
* Exercise 2-9. In a two's complement number system, x &= (x-1) deletes the
* rightmost 1-bit in x. Explain why. Use this observation to write a faster
* version of bitcount.
* rotated to the right by n positions.
*
* Observation:
* In a two's complement number system, x &= (x-1) deletes the rightmost
* 1-bit in x. The reason for that is simple once things are broken down.
* Using an example, let's say x is 19. 19 in binary is 10011.
* (x-1) is 18 or 10010 in binary. Using the bitwise AND operator the result
* is:
* 10011
* & 10010
* -------
* 10010
*
* 10010 is 18 and 10011 with the rightmost bit removed.
*
* Author: Kun Deng
*/
#include <stdio.h>
#include <stdlib.h>
// Counts the number of 1-bits in a number
int bitcount(unsigned int x);
// Counts the number of 1-bits in a number but faster than bitcount()
int bitcount_improved(unsigned int x);
int main(int argc, char **argv)
{
unsigned int x = 511;
if (argc == 2)
{
x = atoi(argv[1]);
}
int bit_amount = bitcount(x);
printf("%d has %d bits\n", x, bit_amount);
int bit_amount_improved = bitcount_improved(x);
printf("%d has %d bits - Improved\n", x, bit_amount_improved);
return 0;
}
int bitcount(unsigned int x)
{
int b;
for (b = 0; x != 0; x>>= 1)
{
if (x & 01)
{
++b;
}
}
return b;
}
int bitcount_improved(unsigned int x)
{
int b;
// x &= (x-1) is always removing the rightmost bit. With this it's easier
// to count the amount of 1-bits simply by incrementing b.
for (b = 0; x != 0; x &= (x-1))
{
++b;
}
return b;
}
+82
View File
@@ -0,0 +1,82 @@
/*
*
* Exercise 2-10. Rewrite the function lower, which converts upper case
* letters to lower case, with a conditional expression instead of
* if-else.
*
* Author: Kun Deng
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
char lowered[50];
// Makes the string lower case
char *lower(char *value);
// Returns 1 if value is a valid alphabetic value and 0 if invalid
int is_valid(char *value);
int main(int argc, char **argv)
{
char *x = "soSSDFrSDGFtSGngSGDeSGD\0";
if (argc == 2)
{
x = argv[1];
}
int result = is_valid(x);
if (result == 1)
{
printf("%s is a valid alphabetic value\n", x);
char *lowered = lower(x);
printf("%50s %10s %50s\n", "Regular", "|", "Lowered");
printf("%50s %10s %50s\n", x, "|", lowered);
}
else if (result == 0)
{
printf("%s is not a valid alphabetic value\n", x);
}
return 0;
}
char *lower(char *value)
{
extern char lowered[];
int result = 0;
int a;
for (a = 0; value[a] != '\0'; ++a)
{
char c = value[a];
// printf("%c ", c);
lowered[a] = (isupper(c) ? tolower(c) : c);
}
lowered[a] = '\0';
return lowered;
}
int is_valid(char *value)
{
int result = 1;
for (int i = 0; value[i] != '\0'; ++i)
{
if (!isalpha(value[i]))
{
result = 0;
break;
}
}
return result;
}