-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.c
More file actions
99 lines (82 loc) · 1.67 KB
/
functions.c
File metadata and controls
99 lines (82 loc) · 1.67 KB
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
#include "apc.h"
#include <stdio.h>
#include <stdlib.h>
void print_list(Dlist *head)
{
/* Cheking the list is empty or not */
if (head == NULL)
{
printf("INFO : List is empty\n");
}
else
{
while (head)
{
/* Printing the list */
printf("%d", head -> data);
/* Travering in forward direction */
head = head -> next;
}
}
}
char findOperator(char *s)
{
int i=0 ;
while(s[i] != '\0')
{
if (s[i] == '+' || s[i] == '-' || s[i] == '*' || s[i] == '/')
{
return s[i];
}
i++;
}
}
int insertElements(Dlist **head1,Dlist **tail1,Dlist **head2,Dlist **tail2,char *s)
{
int i=0;
while(s[i] != '+' && s[i] != '-' && s[i] != '*' && s[i] != '/')
{
//create node
Dlist *new = malloc(sizeof(Dlist));
if(new== NULL)
{
return FAILURE;
}
new->data = s[i]-48;
new->prev = NULL;
new->next = NULL;
if(*head1 == NULL)
{
*head1 = new;
*tail1 = new;
}
else
{
(* tail1)->next = new;
new->prev = (*tail1);
*tail1 = new;
}
i++;
}
i++;
while(s[i] !='\0')
{
Dlist *new = malloc(sizeof(Dlist));
new->data = s[i] - 48;
new->prev = NULL;
new->next = NULL;
if(*head2 == NULL)
{
*head2 = new;
*tail2 = new;
}
else
{
(* tail2)->next = new;
new->prev = (*tail2);
*tail2 = new;
}
i++;
}
return SUCCESS;
}