-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyString.c
1621 lines (1417 loc) · 43.8 KB
/
MyString.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Created by ziv on 8/9/15.
//
/**
*Answers to questions from exercise description:
* **** The struct that i chose and it's members: ****
* See the struct defined below. it's members are:
* char *actualString : a pointer to a C String. points to some memory location
* holding the first char of C string
* int *refCounter : a pointer to some integer location, holding the number of references to the actual string.
* int length : an actual int holding the length of the string.
*
* i chose this struct to allow for reference counting as suggested by the bonus assignment instructions.
* in this fashion, no MyString struct holds an actual string, rather a pointer to a pre-existing string
* in the memory. to copy from one MyString to another, a copy of the pointer address is sufficient (always O(1)).
* to ensure all structs know how many references are made to a string, they all share the address of the counter as well.
* the lenght is not shared since a pointer location is larger than an int, and requires less updates than a refCounter.
*
* **** uses of malloc/realloc and ways to save on those ****
* since i chose to use ref-counting this meant that memory allocations are made only when changing a string to a
* new value, as opposed to an assignment from another string.
*
* the places where i used malloc:
* myStringAlloc() : obviously needed to allocate memory for a struct as well as for default string and recount
* refReset() : allocate a new integer for reference counting.
* myStringFilter() : allocate new memory segment for the filtered string.
* myStringSetFromCString(): allocate memory for the size of a new string for the struct
* myStringSetFromInt(): allocate memory for the new string
* myStringToCString(): allocate memory for a copy of the existing string
* myStringCat(): allocate more memory for the concatenated string.
* myStringCatTo(): allocate memory for the concated string
*
* we were asked to use malloc/realloc intelligently. for example, not to reallocate memory for a change of 1 byte.
* however, the malloc implementation is already intelligent enough to not make changes if the resulting memory
* block is the same size as the old memory block (i.e. changes that are less than 16 bytes).
* "Section 7.20.3 of C99 states The pointer returned if the allocation succeeds is suitably aligned so that it may be
* assigned to a pointer to any type of object."
* and:
* "C99 7.20.3.4 §4: The realloc function returns a pointer to the new object (which may have the same
* value as a pointer to the old object)"
*
* thus, for changes smaller a 16 byte "word", realloc will not make any changes, and will return the same pointer
* in O(1) efficiency, basically making any optimization attempts on my behalf rather pointless.
*
* **** special design decisions ****
* in the customSort method, i created an inner method that is defined at runtime according to the input argument
* of the outer method. customSort gets a comparator, and the inner method wraps customCompare by providing the
* comparator passed to customSort as an argument to customCompare. this wrapper method is then passed to qsort for
* array sorting.
*
* i dont feel that i have written any specal algorithms worth mentioning, all helper methods i wrote were written
* to avoid using methods from external libraries, except 'power' which was written since "pow" didnt work for me.
*
**/
#include <stdlib.h>
#include <string.h>
#include "MyString.h"
#define MALLOC_ERROR "Error allocating memory\n"
//0 is 48 in ascii so thec number 1 is 1+48=49
#define INT_ASCII_DIFF 48
#define INT_ASCII_MAX 57
//max digits for long int =10 + sign
#define MAX_DIGITS_FOR_INT 11
#define DECIMAL_SYSTEM 10
#define NEGATIVE_SIGN '-'
#define END_LINE '\0'
// comparator GReater Than result
#define COMP_GRT 1
// comparator SMaller Than result
#define COMP_SMT -1
#define COMP_EQUAL 0
// true return value for the equal method
#define COMP_TRUE 1
// false return value for the equal method
#define COMP_FALSE 0
// returns the minimum of 2 int values.
#define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
#define ASCII_CASE_DIFF 32
/**
* MyString represents a manipulable string.
* Implement reference counting for better memory consumption and improved performance.
**/
typedef struct _MyString
{
int length; // length of string
int *refCount; // pointer to an int holding the reference counter for this string.
char *actualString; // pointer to a C string holding the actual string.
} MyString;
/**
* @brief Allocates a new MyString and sets its value to "" (the empty string).
* It is the caller's responsibility to free the returned MyString.
*
* RETURN VALUE:
* @return a pointer to the new string, or NULL if the allocation failed.
*
* Time Complexity: given that malloc/realloc time complexity is non-deterministic, i'll treat it as O(MALL),
* here and throughout this file.
* Total complexity for myStringAlloc: O(1) + O(MALL).
*
*/
MyString *myStringAlloc()
{
MyString *temp = malloc(sizeof(MyString));
temp->actualString = malloc(sizeof(char));
*temp->actualString = END_LINE;
temp->length = 0;
temp->refCount = malloc(sizeof(int));
*temp->refCount = 0;
return temp;
}
/**
* helper method to decrease the reference counter.
*/
inline static void refCountDecrement(MyString *str)
{
*str->refCount -= 1;
}
/**
* helper method to increase the reference counter.
*/
inline static void refCountIncrement(MyString *str)
{
*str->refCount += 1;
}
/**
* helper method to free a cString only iff it has no copies.
* Time Complexity: O(1)
*/
static void freeCString(MyString *pString)
{
if (*(pString->refCount) == 0)
{
free(pString->refCount);
free(pString->actualString);
}
else
{
refCountDecrement(pString);
}
}
/**
* @brief **ref-Counting** Frees the memory and resources allocated to str.
*
* @param str the MyString to free.
* If str is NULL, no operation is performed.
* Time Complexity: I'm assuming that a FREE operation is O(1), so total complexity is O(1).
*/
void myStringFree(MyString *str)
{
freeCString(str);
free(str);
}
/**
* helper method that checks if a MyString object is null, or if it's contents is.
*/
inline static bool isStringNull(const MyString *str)
{
return (str == NULL || str->actualString == NULL);
}
/**
* @brief ** implementing O(1) string cloning by ref-counting.
* Allocates a new MyString with the same value as str. It is the caller's
* responsibility to free the returned MyString.
* @param str the MyString to clone.
* RETURN VALUE:
* @return a pointer to the new string, or NULL if the allocation failed.
*
* Time Complexity: O(1) + O(MALL)
*/
MyString *myStringClone(const MyString *str)
{
MyString *temp = myStringAlloc();
//check if string to clone is non-null
if (isStringNull(str))
{
return temp;
}
//else do reference copy for fields..
temp->actualString = str->actualString;
temp->length = str->length;
temp->refCount = str->refCount;
refCountIncrement(temp);
return temp;
}
/**
* helper method that reallocates memory for a new reference counter and sets it to zero.
* O(1) + O(MALL)
*/
static void refReset(MyString *str)
{
if (str->refCount != 0)
{
str->refCount = malloc(sizeof(int *));
}
*str->refCount = 0;
}
/**
* @brief doesnt copy value, just reference. - refCounting
* Sets the <s>value</s> reference of str to the <s>value</s> reference of other.
* @param str the MyString to set
* @param other the MyString to set from
* RETURN VALUE:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
*
* Time Complexity: O(1) + O(MALL)
*/
MyStringRetVal myStringSetFromMyString(MyString *str, const MyString *other)
{
// check that the source string is non-null
if (isStringNull(other))
{
return MYSTRING_ERROR;
}
//check and see if the old CString can be freed.
freeCString(str);
refReset(str);
str->actualString = other->actualString;
str->length = other->length;
//re-point counter and increment.
str->refCount = other->refCount;
refCountIncrement(str);
return MYSTRING_SUCCESS;
}
/**
* helper method that checks if a cString is null;
*/
inline static bool cStringNullCheck(const char *cStringToCheck)
{
return cStringToCheck == NULL;
}
/**
* helper method, counts the number of chars in a string.
* returns the... number of cars in a string.
* accepts a..... string.
*/
static int cStringCheckLength(const char *cString)
{
if (cString == NULL)
{
return 1;
}
int counter = 0;
char curChar = *cString;
while (curChar != END_LINE)
{
counter++;
curChar = *(cString + (sizeof(char) * counter));
}
return counter;
}
/**
* @brief filter the value of str acording to a filter.
* remove from str all the occurrence of chars that are filtered by filt
* (i.e. filr(char)==true)
* @param str the MyString to filter
* @param filt the filter
* RETURN VALUE:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
* Time Complexity: standard case- O(n) + O(MALL) where n is the number of chars in string.
* best case (null or empty string)- O(1) + O(MALL)
**/
MyStringRetVal myStringFilter(MyString *str, bool (*filt)(const char *))
{
// prep new string - alloc maximum size =old size, inject passing chars
char *newString = malloc((str->length) * sizeof(char));
// ensure malloc is successful.
if (cStringNullCheck(newString))
{
printf(MALLOC_ERROR);
return MYSTRING_ERROR;
}
int counter = 0;
for (int i = 0; i < str->length; ++i)
{
const char *currentChar = &(str->actualString[i]);
if (filt(currentChar))
{
newString[counter++] = *currentChar;
}
}
newString[counter] = END_LINE;
// housekeeping: reallocate memory to minimize array size, free old Cstring
// ensure realloc was successfull
newString = realloc(newString, counter * sizeof(char));
//return empty string if all chars were filtered out.
if (newString == NULL && counter == 0)
{
newString = realloc(newString, sizeof(char));
*newString = END_LINE;
}
else if (cStringCheckLength(newString) != counter)
{
printf(MALLOC_ERROR);
return MYSTRING_ERROR;
}
freeCString(str);
str->actualString = newString;
str->length = counter;
refReset(str);
return MYSTRING_SUCCESS;
}
/**
* @brief Sets the <s>value</s> reference of str to the <s>value</s> reference of the given C string.
* The given C string must be terminated by the null character.
* Checking will not use a string without the null character.
* *note:* it was not defined that the source Cstring is final. being const in the scope of this
* method means that i return a struct with the same string as i got (no change in the scope) but
* does not mean that it is not to be changed in other methods. i hope my understanding of the
* const usage is correct in this regards.
* @param str the MyString to set.
* @param cString the C string to set from.
* RETURN VALUE:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
*
* Time Complexity: standard case: again, assuming all memory allocation/copying operations are roughly
* constant time, then O(1) + O(MALL).
**/
MyStringRetVal myStringSetFromCString(MyString *str, const char *cString)
{
//check that the string isn't null
if (cStringNullCheck(cString))
{
return MYSTRING_ERROR;
}
int length = cStringCheckLength(cString);
char *copyOfCstring = malloc(length + 1 * sizeof(char));
//check memory alloc
if (copyOfCstring == NULL)
{
printf(MALLOC_ERROR);
return MYSTRING_ERROR;
}
memcpy(copyOfCstring, cString, (length + 1) * sizeof(char));
copyOfCstring[length + 1] = END_LINE;
//free old Cstring then reassign the pointer to new string.
freeCString(str);
str->actualString = copyOfCstring;
refReset(str);
str->length = length;
return MYSTRING_SUCCESS;
}
/**
* helper method that gets a cString and it's length, and reverses the order of the chars.
* used for converting integer value to number string.
* O(n/2)
*/
static char *reverseCstring(char *tempNum, int i)
{
for (int j = 0; j <= i - j - 1; ++j)
{
char tempChar;
if (tempNum[j] == NEGATIVE_SIGN)
{ // if neg, shift one position right before reversing.
j++, i++;
}
tempChar = tempNum[j];
tempNum[j] = tempNum[i - j - 1];
tempNum[i - j - 1] = tempChar;
}
return tempNum;
}
/**
* helper method that gets an integer and returns a pointer to a cString with that value.
* O(n) + O(n/2) + O(MALL)
*/
static char *intToCString(int n)
{
int i = 0;
char *tempNum = malloc(MAX_DIGITS_FOR_INT * sizeof(char));
if (cStringNullCheck(tempNum))
{
return NULL;
}
// check if the number is negative, adding the neg-sign to the string.
if (n < 0)
{
tempNum[i] = NEGATIVE_SIGN;
// switch to positive int to prevent calculation issues with mod/floor.
n = abs(n);
i++;
}
//iterate over digits by moding for the digit value and flooring to discard it.
for (; n != 0 && i < MAX_DIGITS_FOR_INT; ++i)
{
tempNum[i] = (char) (n % DECIMAL_SYSTEM + INT_ASCII_DIFF);
n /= DECIMAL_SYSTEM;
}
// create the actual string of length 'i'
char *temp = realloc(tempNum, i * sizeof(char));
if (*temp != *tempNum)
{
printf(MALLOC_ERROR);
return NULL;
}
tempNum[i] = END_LINE;
return reverseCstring(tempNum, i);
}
/**
* @brief Sets the value of str to the value of the integer n.
* (i.e. if n=7 than str should contain ‘7’)
* You are not allowed to use itoa (or a similar functions) here but must code your own conversion function.
* @param str the MyString to set.
* @param n the int to set from.
* RETURN VALUE:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
*
* Time Complexity: O(MALL) + O(n) where n is the length in digits of the int.
*
*/
MyStringRetVal myStringSetFromInt(MyString *str, int n)
{
//free old string
freeCString(str);
// parse int to Cstring and assign reference to string, then zero the counter;
str->actualString = (intToCString(n));
//check that the procedure was succesfull
if (str->actualString == NULL)
{
return MYSTRING_ERROR;
}
str->length = cStringCheckLength(str->actualString);
refReset(str);
return MYSTRING_SUCCESS;
}
/**
* helper method to calculate power, since for some reason importing math.h didnt make pow() available.
* complexity is o(factor), and bounded by 9 since that's the largest 10 base factor an integer supports.
*/
static double power(int base, int factor)
{
int sum = 1;
for (int i = 1; i < factor; ++i)
{
sum *= base;
}
return sum;
}
/**
* get char (representing a valid number) return int with that value.
*/
static int charToInt(char c)
{
return (int) c - INT_ASCII_DIFF;
}
/**
* @brief Returns the value of str as an integer.
* If str cannot be parsed as an integer,
* the return value should be MYSTR_ERROR_CODE
* NOTE: positive and negative integers should be supported.
* Assume the string is a valid int, as answered by Levi Offen in the exercise forum.
* under this assumption i limit the number of digits to 10 + optional minus sign.
* also if a non-supported charachter is encountered, an error is returned regardless of whether we
* managed to read some chars before.
*
* @param str the MyString
* @return an integer
*
* Time complexity: O(n) (power calculations are at most sum(1to9)=O(n), as n is bounded by 10)
*/
int myStringToInt(const MyString *str)
{
signed int tempSum = 0;
// since reading from left to right, keep the sign conversion to later.
int signFlip = 1;
int i = 0;
// if first char is the neg sine, make the signFlip be negative.
if (str->actualString[i] == NEGATIVE_SIGN)
{
signFlip = -1;
i++;
}
//iterate over string, multiply each digit by 10^(digitNumber) and add to sum
for (; i < str->length; ++i)
{
if (str->actualString[i] > INT_ASCII_MAX || str->actualString[i] < INT_ASCII_DIFF)
{
if (i == 0)
{
tempSum = MYSTR_ERROR_CODE;
}
return tempSum;
}
tempSum += (charToInt(str->actualString[i]) * (power(DECIMAL_SYSTEM, str->length - i)));
}
//make sure the sign is maintained.
return tempSum * signFlip;
}
/**
* @brief Returns the value of str as a C string, terminated with the
* null character. It is the caller's responsibility to free the returned
* string by calling free().
* @param str the MyString
* RETURN VALUE:
* @return the new string, or NULL if the allocation failed.
*
* Time complexity: O(MALL)
*/
char *myStringToCString(const MyString *str)
{
char *tempString = malloc(str->length * sizeof(char) + 1);
memcpy(tempString, str->actualString, str->length * sizeof(char));
if (tempString == NULL)
{
tempString = END_LINE;
}
return tempString;
}
/**
* @brief Appends a copy of the source MyString src to the destination MyString dst.
* @param dest the destination
* @param src the MyString to append
* RETURN VALUE:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
*
* Time Complexity: O(MALL) + O(1).
*/
MyStringRetVal myStringCat(MyString *dest, const MyString *src)
{
if (dest == NULL || src == NULL)
{
return MYSTRING_ERROR;
}
if (*dest->refCount != 0)
{
char *oldString = myStringToCString(dest);
freeCString(dest);
dest->actualString = oldString;
refReset(dest);
}
//try to allocate memory.
char *newPointer = realloc(dest->actualString, (dest->length + src->length) * sizeof(char));
if (newPointer == NULL)
{
return MYSTRING_ERROR;
}
//if successful, copy src Cstring into the segment newly allocated, from the end of original destString
// over the course of src.length chars.
dest->actualString = newPointer;
memcpy(&dest->actualString[dest->length], src->actualString, src->length * sizeof(char));
dest->length = dest->length + src->length;
return MYSTRING_SUCCESS;
}
/**
* @brief Sets result to be the concatenation of str1 and str2.
* result should be initially allocated by the caller.
* result shouldn't be the same struct as str1 or str2.
* @param str1
* @param str2
* @param result
* RETURN VALUE:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
*
* Time Complexity: O(MALL) + O(1)
*/
MyStringRetVal myStringCatTo(const MyString *str1, const MyString *str2, MyString *result)
{
if (str1 == NULL || str2 == NULL || result == NULL)
{
return MYSTRING_ERROR;
}
if (myStringSetFromMyString(result, str1) == MYSTRING_ERROR)
{
return MYSTRING_ERROR;
}
if (myStringCat(result, str2) == MYSTRING_ERROR)
{
return MYSTRING_ERROR;
}
return MYSTRING_SUCCESS;
}
/**
* @brief Compares str1 and str2.
* @param str1
* @param str2
* @param comparator
* RETURN VALUE:
* @return an integral value indicating the relationship between the strings:
* A zero value indicates that the strings are equal according to the custom comparator (3rd parameter).
* A value greater than zero indicates that the first MyString is bigger according to the comparator.
* And a value less than zero indicates the opposite.
* If strings cannot be compared, the return value should be MYSTR_ERROR_CODE
*
* Time Complexity: best case O(1), worst case O(min(n,m)) where n,m are lengths of the strings 1,2.
*/
int myStringCustomCompare(const MyString *str1, const MyString *str2,
int (*comp)(const char *a, const char *b))
{
// check if both strings are valid.
if (isStringNull(str1) || isStringNull(str2))
{
return MYSTR_ERROR_CODE;
}
// check if both strings are referencing the same CString.
if (str1->actualString == str2->actualString)
{
return COMP_EQUAL;
}
int diff;
//compare each pair of chars, return if mismatch found.
for (int i = 0; i < MIN(str1->length, str2->length); ++i)
{
diff = comp((const char *) &str1->actualString[i], (const char *) &str2->actualString[i]);
if (diff > 0)
{
return COMP_GRT;
}
if (diff < 0)
{
return COMP_SMT;
}
}
// if all chars untill the max length of the shorter string match, then the longer string's next char
// is greater than NULL==0, in which case the diff of lengths gives the required result.
return str1->length - str2->length;
}
/**
* helper method.
* default comparator used by compare/equal methods
* returns the diff betwen the integer values of two chars.
*/
static int defaultComparator(const char *a, const char *b)
{
return (int) *a - (int) *b;
}
/**
* wrapper for use with the myQsort method.
* allows binary comparison between MyString objects using customComp and default comparison.
*/
static int defCompWrapper(const void *a, const void *b)
{
return myStringCustomCompare((MyString *) a, (MyString *) b, defaultComparator);
}
/**
* @brief Compare str1 and str2.
* @param str1
* @param str2
*
* RETURN VALUE:
* @return an integral value indicating the relationship between the strings:
* A zero value indicates that the strings are equal.
* A value greater than zero indicates that the first character that does not match has a greater ASCII value in str1 than in str2;
* And a value less than zero indicates the opposite.
* If strings cannot be compared, the return value should be MYSTR_ERROR_CODE
*
* Time Complexity: see myStringCustomCompare.
*
*/
int myStringCompare(const MyString *str1, const MyString *str2)
{
//utilize the more powerful customCompare with a default comparator macro.
return myStringCustomCompare(str1, str2, defaultComparator);
}
/**
* @brief Check if str1 is equal to str2.
* @param str1
* @param str2
*
* RETURN VALUE:
* @return an integral value indicating the equality of the strings (logical equality - that they are composed of the very same characters):
* A zero value indicates that the strings are not equal.
* A greater than zero value indicates that the strings are equal.
* If strings cannot be compared, the return value should be MYSTR_ERROR_CODE
*
* Time Complexity: see myStringCompare
*
*/
int myStringEqual(const MyString *str1, const MyString *str2)
{
int result = myStringCompare(str1, str2);
return result == MYSTR_ERROR_CODE ? MYSTR_ERROR_CODE : (result == COMP_EQUAL ? COMP_TRUE : COMP_FALSE);
}
/**
* @brief Check if str1 is equal to str2.
* @param str1
* @param str2
* @param comparator
*
* RETURN VALUE:
* @return an integral value indicating the equality of the strings using a custom comparator (3rd parameter):
* A zero value indicates that the strings are not equal.
* A greater than zero value indicates that the strings are equal.
* If string cannot be compared, the return value should be MYSTR_ERROR_CODE
*
* Time Complexity: see myStringCustomCompare
*/
int myStringCustomEqual(const MyString *str1, const MyString *str2,
int (*comp)(const char *a, const char *b))
{
int result = myStringCustomCompare(str1, str2, comp);
return result == MYSTR_ERROR_CODE ? MYSTR_ERROR_CODE : (result == COMP_EQUAL ? COMP_TRUE : COMP_FALSE);
}
/**
* @return the amount of memory (all the memory that used by the MyString object itself and its allocations),
* in bytes, allocated to str1.
* Time Complexity: O(1)
*/
unsigned long myStringMemUsage(const MyString *str1)
{
unsigned long sumBytes = 0;
sumBytes += sizeof(*str1);
sumBytes += str1->length * sizeof(char);
sumBytes += sizeof(*str1->refCount);
return sumBytes;
}
/**
* @return the length of the string in str1.
*
* O(1)...
*/
unsigned long myStringLen(const MyString *str1)
{
if (str1 == NULL)
{
return MYSTRING_ERROR;
}
return (unsigned long) str1->length;
}
/**
* Writes the content of str to stream. (like fputs())
*
* RETURNS:
* @return MYSTRING_SUCCESS on success, MYSTRING_ERROR on failure.
*
* Time complexity: O(fprintf * 5) + O(fclose). whatever those are. otherwise- O(1)?
*/
MyStringRetVal myStringWrite(const MyString *str, FILE *stream)
{
if (stream == NULL)
{
return MYSTRING_ERROR;
}
fprintf(stream, "\t%-50s\n", "Here layeth the contents of a String Struct");
fprintf(stream, "\t%-50.30s%-10i\n", "It's length is: ", str->length);
fprintf(stream, "\t%-45.30s%-10i%-5s\n", "It has been referenced ", *str->refCount, " times.");
fprintf(stream, "\t%-50s\n", "And it's content is:");
fprintf(stream, "\t%-50s\n", str->actualString);
return MYSTRING_SUCCESS;
}
/**
* as glibc qsort somehow corrupted the cStrings within my structs, i opted to stop wasting time (over 5
* hours!) trying to understand what's wrong with it, and just occam's razor it out.
* so here's a simple, not very efficient, but very working implementation of bubblesort while using
* myStringCustomCompare with help of an external comparator for the actual comparisons.
*
*/
static void myQsort(MyString **arr, int len, int (*comp)(const void *a, const void *b))
{
for (int x = 0; x < len; x++)
{
for (int y = 0; y < len - 1; y++)
{
if (comp(arr[y], arr[y + 1]) > 0)
{
MyString *temp = arr[y + 1];
arr[y + 1] = arr[y];
arr[y] = temp;
}
}
}
}
/**
* @brief sort an array of MyString pointers
* @param arr
* @param len
* @param comparator custom comparator
*
* RETURN VALUE:none
*
* Time Complexity: O(N^2) - as i opted to use very simple bubble sort instead of wasting more time
* troubleshooting qsort.
* */
void myStringCustomSort(MyString **arr, int len, int (*comp)(const void *a, const void *b))
{
myQsort(arr, len, comp);
}
/**
* @brief sorts an array of MyString pointers according to the default comparison (like in myStringCompare)
* @param arr
* @param len
*
* RETURN VALUE: none
*
* Time Complexity: see myStringCustomSort.
*/
void myStringSort(MyString **arr, int len)
{
myQsort(arr, len, defCompWrapper);
}
/**
* this method swaps the refcounter and actualString pointers between two strings.
* in O(1).
* since you gave no method description, i'm assuming this is what you meant.
*/
void myStringSwap(MyString *str1, MyString *str2)
{
//single temp general pointer.
void *tempPoint;
//swap strings
tempPoint = str1->actualString;
str1->actualString = str2->actualString;
str2->actualString = tempPoint;
//swap references
tempPoint = str1->refCount;
str1->refCount = str2->refCount;
str2->refCount = tempPoint;
//swap lengths
*((int *) tempPoint) = str1->length;
str1->length = str2->length;
str2->length = *((int *) tempPoint);
//and done.
}
#ifndef NDEBUG
#include <assert.h>
/**
* print string to stdout
*/
static void print(const char *msg)
{
if (msg != NULL)
{
printf("%-20.40s %-80s %20.40s \n", "****************", msg, "****************");
}
}
/**
* use memcmp to compare the internal cString in MyString with another cString
*/
static int myStringMemcmp(const MyString *str, const char *text)
{
return memcmp(str->actualString, text, (size_t) (MIN(cStringCheckLength(text), cStringCheckLength
(str->actualString))));
}
/**
* swap test.
*/
static void swapTest()
{
MyString *str1 = myStringAlloc(), *str2 = myStringAlloc();
myStringSetFromCString(str1, "Hello!");
myStringSetFromCString(str2, "World!");
myStringSwap(str1, str2);
if (myStringMemcmp(str1, "World!") || myStringMemcmp(str2, "Hello!"))
{
print("Error with SwapTest");
}
myStringFree(str1);
myStringFree(str2);
}
/**
* custom Sort by string length.
*/
static int lengthComparator(const MyString *str1, const MyString *str2)
{
return (str1)->length - (str2)->length;
}
/**
* tests myStringCustomSort.
*/
static void customSortTest()
{
MyString *s0 = myStringAlloc(), *s1 = myStringAlloc(), *s2 = myStringAlloc(),
*s3 = myStringAlloc(), *s4 = myStringAlloc(), *s5 = myStringAlloc(),
*s6 = myStringAlloc(), *s7 = myStringAlloc(), *s8 = myStringAlloc(),
*s9 = myStringAlloc();
MyString *arr[] = {s0, s1, s2, s3, s4, s5, s6, s7, s8, s9};
myStringSetFromCString(s0, "1234567890");
myStringSetFromCString(s1, "12345");
myStringSetFromCString(s2, "1234567");
myStringSetFromCString(s3, "12");
myStringSetFromCString(s4, "1");
myStringSetFromCString(s5, "123");
myStringSetFromCString(s6, "12345678");
myStringSetFromCString(s7, "1234");
myStringSetFromCString(s8, "123456");
myStringSetFromCString(s9, "123456789");
myStringCustomSort(arr, 10, (int (*)(const void *, const void *)) lengthComparator);
if (!(
myStringMemcmp(arr[0], "1") || myStringMemcmp(arr[1], "12") || !myStringMemcmp(arr[2], "123")
|| myStringMemcmp(arr[3], "1234") || myStringMemcmp(arr[4], "12345")
|| myStringMemcmp(arr[5], "123456") || myStringMemcmp(arr[6], "1234567")
|| myStringMemcmp(arr[7], "12345678") || myStringMemcmp(arr[8], "123456789")