-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction.c
1503 lines (1348 loc) · 124 KB
/
function.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include "function.h"
void removeEnter(char *str) {
if (str[strlen(str) - 1] == '\n') {
str[strlen(str) - 1] = '\0';
}
}
int setting(int start)
{
char set;
int returnValue = start;
char intbuff[50];
printf("\e[0;94m");
printf("\n================================================================\n\n");
printf("\e[0m");
while(set !='7')
{
printf("Current Setting : %d Max Decimal points\n",returnValue);
printf("Enter Decimal point (0-6) (7 to leave) : ");
fgets(intbuff, 50, stdin);
removeEnter(intbuff);
set=intbuff[0];
if(isprint(intbuff[1])!=0)
{
printf("\e[0;31m");
printf("\n-----------------------------Error!-----------------------------\n\n");
printf("\e[0m");
continue;
}
switch(set)
{
case '0':
returnValue = 0;
break;
case '1':
returnValue = 1;
break;
case '2':
returnValue = 2;
break;
case '3':
returnValue = 3;
break;
case '4':
returnValue = 4;
break;
case '5':
returnValue = 5;
break;
case '6':
returnValue = 6;
break;
case '7':
break;
default:
printf("e[0;31m");
printf("\n-----------------------------Error!-----------------------------\n");
printf("e[0;0m");
break;
}
if(set!='7')
{
printf("\e[0;94m");
printf("\n================================================================\n\n");
printf("\e[0m");
}
}
return returnValue;
}
//แสดงคำตอบอันเดียว
void printans(double answer,int set)
{
//printf("Check");
double printAns = 0;
switch(set)
{
case 0:
printAns = floor(answer);
//printf("%.0lf\n",answer);
break;
case 1:
printAns = floor(answer*10)/10;
//printf("%.1lf\n",answer);
break;
case 2:
printAns = floor(answer*100)/100;
//printf("%.2lf\n",answer);
break;
case 3:
printAns = floor(answer*1000)/1000;
//printf("%.3lf\n",answer);
break;
case 4:
printAns = floor(answer*10000)/10000;
//printf("%.4lf\n",answer);
break;
case 5:
printAns = floor(answer*100000)/100000;
//printf("%.5lf\n",answer);
break;
case 6:
//printf("%.6lf\n",answer);
printAns = floor(answer*100000)/100000;
//printf("%.6lf\n",answer);
break;
//case 7:
//printf("%g\n",answer);
//break;
}
//ถ้าเป็นทศนิยม6จุดหรือมากกว่า ให้ใช้ .6lf เลย
//ถ้าไม่ ใช้ %g เหมือนเดิม
if(set == 6 && (printAns != answer))
{
printf("%.6lf\n",answer);
}
else
{
printf("%g\n",printAns);
}
}
void initialize(queue *q)
{
q->count = 0;
q->front = NULL;
q->rear = NULL;
}
int isempty(queue *q)
{
return (q->rear == NULL);
}
void dequeue(queue *q)
{
DoubleNode *tmp;
int n = q->front->data;
tmp = q->front;
q->front = q->front->next;
q->count--;
free(tmp);
}
void enqueue(queue *q, double value)
{
if (q->count == 5)
{
dequeue(q);
}
DoubleNode *tmp;
tmp = malloc(sizeof(DoubleNode));
tmp->data = value;
tmp->next = NULL;
//ถ้ามีอยู่แล้ว ต่อหลัง
if(!isempty(q))
{
q->rear->next = tmp;
q->rear = tmp;
}
//ถ้าไม่มี เป็นหัวเป็นท้าย
else
{
q->front = q->rear = tmp;
}
q->count++;
}
void display(queue* q,int set)
{
printf("\e[0;94m");
printf("\n================================================================\n\n");
printf("\e[0m");
int count = q->count;
if(q->front == NULL)
{
printf("Nothing in History\n");
}
else
{
DoubleNode* loopNode = q->front;
while(loopNode != NULL)
{
printf("%d Answer before : ",count);
printans(loopNode->data, set);
count--;
loopNode = loopNode->next;
}
}
}
int priority(char Operator)
{
if (Operator == '^')
{
return 3;
}
else if (Operator == '*' || Operator == '/' || Operator == '%')
{
return 2;
}
else if(Operator == '+' || Operator == '-')
{
return 1;
}
else
{
return 0;
}
}
//////////////////เริ่มส่วนแปลง Infix เป็นอื่นๆ/////////////////
//ด้วยเหตุผลบางประการ strrev คอมไพล์ไม่รอด
//เลยต้องทำฟังก์ชั่นไว้ reverse สตริง
void reverse(char *s)
{
int length, c;
char *begin, *end, temp;
length = strlen(s);
begin = s;
end = s;
//หาที่อยู่ end
for (c = 0; c < length - 1; c++)
{
end++;
}
//สลับ
for (c = 0; c < length/2; c++)
{
temp = *end;
*end = *begin;
*begin = temp;
begin++;
end--;
}
}
//ถ้ามีของใน Stack ให้เอาของออกมา พร้อมลบ Index ตัวบนสุด
char popStack(stack_T* stack)
{
if(stack->topIndex == -1)
return -1;
else
return stack->Stack[(stack->topIndex)--];
}
//เพิ่ม Index ตัวบนสุดแล้วใส่ของที่ป้อนมาลง Stack
void pushStack(char inp, stack_T* stack)
{
(stack->topIndex)++;
stack->Stack[stack->topIndex] = inp;
}
//คืนเป็น Pointer ไป (กันวุ่นวาย)
stack_T* StackInfixToPostfix(char expression[],char mode[])
{
//เป็น Stack ไว้ดอง
stack_T StackForPostfix;
//อันนี้ไว้คำตอบ (ส่งกลับ)
stack_T* Converted = calloc(1,sizeof(stack_T));
//Index ตอนไม่มีของจะเป็น -1 ไปก่อน
StackForPostfix.topIndex = -1;
Converted->topIndex = -1;
int ScanIndex = 0,Priority = 0;
char* pointer;
//ใส่วงเล็บปิด&เปิดไปก่อน
pushStack('(',&StackForPostfix);
expression[strlen(expression)] = ')';
expression[strlen(expression)] = '\0';
//กำหนดตัวแรกที่จะวน + ตัวแปรไว้สำหรับ pop
char item = expression[0],PopItem;
while (item != '\0')
{
//ถ้าเป็น ( ให้เอาใส่ Stack
if (item == '(')
{
pushStack(item,&StackForPostfix);
}
//ถ้าเป็นตัวอักษร ช่างมันแล้วใส่ลงคำตอบ
else if (isalpha(item) != 0)
{
pushStack(item,Converted);
}
//ถ้าเจอ ) ให้ดึงใส่คำตอบไปเรื่อยๆจนกว่าจะเจอ (
else if (item == ')')
{
while ((PopItem = popStack(&StackForPostfix)) != '(')
{
pushStack(PopItem,Converted);
}
}
//ถ้าเจอตัว priority ต่ำกว่า ให้ดึงตัวสูงกว่าไปปริ้นเลย
//แต่ว่ากรณีของ Postfix จะนับตัวที่เท่ากันด้วย
//เลยต้องแยกกรณี Prefix กับ Postfix ผ่าน mode
else if(priority(item) == 1 || priority(item) == 2)
{
//ถ้าเป็น Prefix
if (strcmp("Prefix",mode) == 0)
{
//เช็คค่า priority ตัวก่อน
while (priority(StackForPostfix.Stack[StackForPostfix.topIndex])
> priority(item) && StackForPostfix.topIndex != -1)
{
PopItem = popStack(&StackForPostfix);
pushStack(PopItem,Converted);
}
pushStack(item,&StackForPostfix);
}
//ถ้าเป็น Postfix
else
{
//เช็คค่า priority ตัวก่อน
while (priority(StackForPostfix.Stack[StackForPostfix.topIndex])
>= priority(item) && StackForPostfix.topIndex != -1)
{
PopItem = popStack(&StackForPostfix);
pushStack(PopItem,Converted);
}
pushStack(item,&StackForPostfix);
}
}
//else ไม่ต้องใส่ เอาไว้ข้ามกรณี Invalid เลย
//เก็บค่า Priority ไว้ให้ตัวใหม่ตรวจ + วนขึ้นตัวใหม่
//Priority = priority(item);
ScanIndex++;
item = expression[ScanIndex];
}
return Converted;
}
void StackInfixToOther(char* Mode)
{
//รับข้อมูลเข้า
char buffer[100],prefix[100];
stack_T* postfix;
stack_T* ConvertedPrefix;
printf("Please Enter Infix : ");
fgets(buffer, 100, stdin);
EnterCutter(buffer);
strcpy(prefix,buffer);
postfix = StackInfixToPostfix(buffer,"Postfix");
if(strcmp("Prefix", Mode) == 0)
{
////////////////////ลอง Infix to prefix/////////////////////
//Reverse String ก่อน
reverse(prefix);
//สลับ ( กับ )
for (int i = 0; i < strlen(prefix); i++)
{
if (prefix[i] == '(')
{
prefix[i] = ')';
}
else if (prefix[i] == ')')
{
prefix[i] = '(';
}
}
//ทำ Postfix
ConvertedPrefix = StackInfixToPostfix(prefix,"Prefix");
//reverse postfix เป็น Prefix
reverse(ConvertedPrefix->Stack);
printf("The answer is : %s\n",ConvertedPrefix->Stack);
return;
}
printf("The answer is : %s\n",postfix->Stack);
}
void InfixSelect()
{
char intbuff[50];
char set;
printf("\e[0;94m");
printf("\n================================================================\n\n");
printf("\e[0m");;
while(set !='3')
{
printf("1.Infix to Postfix\n");
printf("2.Infix to Prefix\n");
printf("3.Exit\n");
printf("Please select the options (1/2/3) : ");
fgets(intbuff, 50, stdin);
removeEnter(intbuff);
set=intbuff[0];
if(isprint(intbuff[1])!=0)
{
printf("\e[0;31m");
printf("\n-----------------------------Error!-----------------------------\n\n");
printf("\e[0m");
continue;
}
switch(set)
{
case '1':
StackInfixToOther("Postfix");
break;
case '2':
StackInfixToOther("Prefix");
break;
case '3':
break;
default:
printf("e[0;31m");
printf("\n-----------------------------Error!-----------------------------\n");
printf("e[0;0m");
break;
}
if(set!='3')
{
printf("\e[0;94m");
printf("\n================================================================\n\n");
printf("\e[0m");
}
}
}
//////////////////จบส่วนแปลง Infix เป็นอื่นๆ/////////////////
/////////////////////เริ่มส่วนไว้ใช้คิดเลขทั่วไป////////////////
void EnterCutter(char* arr)
{
if (arr[strlen(arr)-1] == '\n')
{
arr[strlen(arr)-1] = '\0';
}
}
void loopFreeNode(Node* headNode)
{
Node* loopNode = headNode;
Node* prevNode = loopNode;
while (loopNode != NULL)
{
prevNode = loopNode;
loopNode = loopNode->next;
free(prevNode);
}
}
Node* push(Node* topStack,Node* source)
{
Node *newNode = (Node *)malloc(sizeof(Node));
strcpy(newNode->data,source->data);
newNode->priority = source->priority;
newNode->next = topStack;
//return ให้เป็น Top ใหม่
return newNode;
}
Node* addNode(Node* tailNode,char *val)
{
Node *newNode = (Node *)malloc(sizeof(Node));
strcpy(newNode->data,val);
newNode->next = NULL;
if (tailNode != NULL)
{
tailNode->next = newNode;
}
//ใส่ priority
newNode->priority = priority(val[0]);
/*
if (strcmp("sqrt(", val) == 0 || strcmp("root(", val) == 0)
{
newNode->priority = 3;
}
*/
//return ท้ายใหม่
return newNode;
}
//อาจลองตัด const
const char* pop(Node** topStack)
{
Node* prevTopStack = (*topStack);
//printf("Pop Check %s \n",(*topStack)->data);
(*topStack) = (*topStack)->next;
char* ReString = (char *)malloc(sizeof(char)*100);
strcpy(ReString, prevTopStack->data);
free(prevTopStack);
//printf("Pop Check : %s\n",ReString);
return ReString;
}
DoubleNode* pushDouble(DoubleNode* topStack, double data)
{
DoubleNode* newNode = (DoubleNode *)malloc(sizeof(DoubleNode));
newNode->data = data;
newNode->next = topStack;
return newNode;
}
double popDouble(DoubleNode** topStack)
{
DoubleNode* prevTopStack = (*topStack);
if((*topStack) == NULL)
{
return 0;
}
(*topStack) = (*topStack)->next;
double value = prevTopStack->data;
free(prevTopStack);
return value;
}
int CheckEquationValid(char* buffer,queue* q)
{
/////////////////////ส่วน 1 ดักตรวจ//////////////////////
//ดักตัวอักษรแปลกๆ
int index = 0;
int open = 0;
int close = 0;
int CorrectFlag = 1;
char CheckHistory[10];
int Numhistory;
while(buffer[index] != '\0')
{
//ถ้าเป็น + - * / ^ ไม่เป็นไร (มี priority)
if(priority(buffer[index]) != 0)
{
//ต้องมี ) หรือ เลขอยู่ด้านหน้า ยกเว้น - ที่ไม่มีของข้างหน้าได้
if (buffer[index] != '-')
{
if (!(index-1 >= 0 && (buffer[index-1] == ')' ||
isdigit(buffer[index-1]))) )
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
//ต้องมีตัวเลขหรือ ( อยู่ข้างหลัง sqrt หรือ root
if(index+1 <= strlen(buffer) &&
(buffer[index+1] == '(' || isdigit(buffer[index+1]) ||
buffer[index+1] == 's' || buffer[index+1] == 'r' ||
buffer[index+1] == 'a' ))
{
index++;
continue;
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
//เป็น ans ให้ตวรจว่าเป็น ans ที่มีอยู่หรือไม่
else if (buffer[index] == 'a')
{
//check 4 ตัวว่ามีต่อมั้ย ถ้า index ยังน้อยกว่า index มากสุด
if (index+3 <= strlen(buffer))
{
//ถ้ามีตัวข้างฟลัง ให้เป็นได้แค่ operator กับ ) เท่านั้น
if(buffer[index+1] == 'n' && buffer[index+2] == 's' &&
isdigit(buffer[index+3]) && buffer[index+3]!=0)
{
//ถ้ามีตัวหลัง แล้วตัวหลังไม่ใช่ operator และ ) ให้ตีว่าไม่ได้
if(index+4 <= strlen(buffer) &&
(priority(buffer[index+4]) == 0) && buffer[index+4] != ')')
{
//ฟ้อง
CorrectFlag = 0;
break;
}
//ดูคิวด้วยว่าคิวสูงสุดคือเท่าไหร่
//ท้ายคิวคือเลข 1
CheckHistory[0] = buffer[index+3];
CheckHistory[1] = '\0';
Numhistory = atoi(CheckHistory);
if(Numhistory > q->count)
{
//ฟ้อง
CorrectFlag = 0;
break;
}
//บวกไป 3 ตัว
index = index+3;
continue;
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
//ถ้าเป็น sqrt หรือ root ไม่เป็นไร โดดข้ามด้วย
//วงเล็บเปิดต้องต่อ sqrt หรือ root เสมอ
else if (buffer[index] == 's')
{
//check 4 ตัวว่ามีต่อมั้ย ถ้า index ยังน้อยกว่า index มากสุด
if (index+5 <= strlen(buffer))
{
//ถ้ามีตัวข้างหน้า ให้เป็นได้แค่ operator กับ ( เท่านั้น
if(buffer[index+1] == 'q' && buffer[index+2] == 'r' &&
buffer[index+3] == 't' && buffer[index+4] == '(' &&
(buffer[index+5] == '-' || buffer[index+5] == '(' ||
isdigit(buffer[index+5])))
{
//บวกไป 5 ตัว
open++;
index = index+5;
continue;
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
else if (buffer[index] == 'r')
{
//check 5 ตัวว่ามีต่อมั้ย ถ้า index ยังน้อยกว่า index มากสุด
if (index+5 <= strlen(buffer))
{
if(buffer[index+1] == 'o' && buffer[index+2] == 'o' &&
buffer[index+3] == 't' && buffer[index+4] == '(' &&
(buffer[index+5] == '-' || buffer[index+1] == '(' ||
isdigit(buffer[index+5])))
{
//บวกไป 5 ตัว
open++;
index = index+5;
continue;
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
//ถ้าเป็น ans หน้ามีวงเล็บเปิดกับ
//ถ้าเป็น ( ) หรือเลขไม่เป็นไร แต่วงเล็บเปิดต้องมีวงเล็บปิดเสมอ
else if (buffer[index] == '(')
{
//วงเล็บเปิดต่อได้แค่ตัวเลข - กับ (
if (index+1 <= strlen(buffer) && (buffer[index+1] == '-' ||
buffer[index+1] == '(' || isdigit(buffer[index+1])))
{
open++;
index++;
continue;
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
else if (buffer[index] == ')')
{
close++;
index++;
continue;
}
//ถ้าเป็น . ต้องมีเลขอยู่ข้างหน้าหลังประกบ ที่เหลือเป็น
else if (buffer[index] == '.')
{
if (index-1 >= 0 && index+1 <= strlen(buffer))
{
if(isdigit(buffer[index-1]) && isdigit(buffer[index+1]))
{
index++;
continue;
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
}
//ตัวเลขไม่เป็นไร
else if (isdigit(buffer[index]))
{
index++;
continue;
}
//นอกเหนือกรณีนี้ Invalid Equation
else
{
//ฟ้อง
CorrectFlag = 0;
break;
}
//index++;
}
if (open != close)
{
CorrectFlag = 0;
}
//test
/*
if (CorrectFlag == 1)
{
printf("Valid");
}
else
{
printf("Invalid");
}
*/
return CorrectFlag;
}
Node* EquationToNode(char* buffer,queue* q)
{
/////////////////ส่วน 2 ยัดเป็น Linked Node////////////////
/*
1. แปลง ( ) + - * / เป็นก้อนเดียว
2. แปลงเลขให้ติดกัน โดยถ้าตัวต่อไปไม่ใช่เลขให้หยุดเก็บไว้เท่านั้น
1) ทำ array ขึ้นมาไว้สำรองเล่นๆ
2) ดูดเฉพาะตัวเลขที่ใช้ไปเก็บ
3) clear array ทุกรอบ + รีตัวแปรเป็น 0
3. sqrt( เก็บเป็นก้อนนึง เจอ ) ให้ pop มั้ง
*/
int i = 0;
int iBefore = 0;
Node* headNode = NULL;
Node* tailNode = NULL;
DoubleNode* loopQueue = NULL;
char NumberString[100];
char ansString[100];
char CheckHistory[10];
int Numhistory;
int temp;
while (buffer[i] != '\0')
{
int count = 0;
iBefore = i;
//clear
strcpy(NumberString, "");
/*
if (i == 0)
{
headNode = tailNode;
}
*/
//ถ้าหน้า - เป็นเลข แสดงว่าเป็นตัวดำเนินการ
//แต่ถ้าหน้า - ไม่ใช่เลข แสดงว่าต้องต่อเป็นสตริงเลข
if(buffer[i] == '-')
{
//ต่อแบบดำเนินการ ข้างหน้า - เป็นเลข
if(i-1 >= 0 && isdigit(buffer[i-1]))
{
//ใส่เข้าไป
NumberString[0] = buffer[i];
NumberString[1] = '\0';
//printf("Check\n");
tailNode = addNode(tailNode,NumberString);
i++;
}
//ถ้าเป็น unary -sqrt()
//ถ้าข้างหน้ามีตัวอักษรอยู่ ต้องเป็น ( เท่านั้น
//ถ้าเป็นเลข โดนดักไปแล้ว
else if (i+1<=strlen(buffer) &&
(buffer[i+1] == 's' || buffer[i+1] == 'r'))
{
strncpy(NumberString, (buffer+i), 6);
NumberString[6] = '\0';
//printf("NumberString : %s\n",NumberString);
tailNode = addNode(tailNode,NumberString);
i = i+6;
}
//ต่อเป็นสตริงเลข
else
{
//ลูปเก็บตัวเลข
NumberString[0] = '-';
count++;
i++;
if(i+1<=strlen(buffer) &&
(buffer[i+1] == 'a'))
{
//ถ้าเป็น ansx ให้ซัมม่อนเลข6ตัวมาจาก history ได้เลย
CheckHistory[0] = buffer[i+4];
CheckHistory[1] = '\0';
Numhistory = atoi(CheckHistory);
//หา queue ที่ต้องการ
//หัวคิวมากสุด ท้ายคิวน้อยสุด
temp = q->count;
loopQueue = q->front;
while(temp > Numhistory)
{
loopQueue = loopQueue->next;
temp--;
}
sprintf(ansString, "%f" , loopQueue->data);
while(ansString[count-1] != '\0')
{
NumberString[count] = ansString[count-1];
count++;
}
i=i+4;
}
else
{
while(isdigit(buffer[i])!=0 || buffer[i] == '.')
{
NumberString[count] = buffer[i];
count++;
i++;
}
}
NumberString[count] = '\0';
tailNode = addNode(tailNode,NumberString);
}
}
else if (buffer[i] == 'a')
{
//ถ้าเป็น ansx ให้ซัมม่อนเลข6ตัวมาจาก history ได้เลย
CheckHistory[0] = buffer[i+3];
CheckHistory[1] = '\0';
Numhistory = atoi(CheckHistory);
//หา queue ที่ต้องการ
//หัวคิวมากสุด ท้ายคิวน้อยสุด
temp = q->count;
//printf("Check\n");
loopQueue = q->front;
while(temp > Numhistory)
{
loopQueue = loopQueue->next;
temp--;
}
sprintf(ansString, "%f" , loopQueue->data);
strcpy(NumberString, ansString);
tailNode = addNode(tailNode,NumberString);
i = i+4;
}
//แปลง ( ) + * / เป็นก้อนเดียว
else if (buffer[i] == '(' || buffer[i] == ')' ||
priority(buffer[i]) != 0 )
{
//ใส่เข้าไป
NumberString[0] = buffer[i];
NumberString[1] = '\0';
//printf("Check\n");
tailNode = addNode(tailNode,NumberString);
i++;
}
else if (buffer[i] == 's' || buffer[i] == 'r')
{
strncpy(NumberString, (buffer+i), 5);
NumberString[5] = '\0';
tailNode = addNode(tailNode,NumberString);
i = i+5;
}
else if (isdigit(buffer[i]))
{
//ลูปเก็บตัวเลข
while(isdigit(buffer[i])!=0 || buffer[i] == '.')
{
NumberString[count] = buffer[i];
count++;
i++;
}
NumberString[count] = '\0';
tailNode = addNode(tailNode,NumberString);
}
else
{
i++;
}
if (iBefore == 0)
{
headNode = tailNode;
}
}
return headNode;
}
Node* NodeInfixtoPostfix(Node* headNodeInfix)
{
////////////ส่วนที่ 3 Infix to Postfix/////////////////
//เป็น Stack ไว้ดอง
Node* topStack = NULL;
//อันนี้ไว้คำตอบ (ส่งกลับ)
Node* headStack = NULL;
Node* tailStack = NULL;
//Dummy Node
Node* DummyNode = (Node *)malloc(sizeof(Node));
//char Dummy[100];