Skip to content

Commit ae733ae

Browse files
committed
palindrome interview
1 parent 55ec575 commit ae733ae

File tree

4 files changed

+203
-0
lines changed

4 files changed

+203
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
#include <stdlib.h>
2+
#include <stdio.h>
3+
#include "lists.h"
4+
5+
/**
6+
* listnums_int - get number of nodes
7+
* @hnums: the tree number links
8+
* Return: the size of the int numbers
9+
*/
10+
11+
size_t listnums_int(const listint_t *hnums)
12+
{
13+
int lenght = 0;
14+
15+
while (hnums != NULL)
16+
{
17+
++lenght;
18+
hnums = hnums->next;
19+
}
20+
21+
return (lenght);
22+
}
23+
24+
/**
25+
* is_palindrome - a func that check if palindrome or not
26+
* @head: the starting point for the nodes
27+
* Return: 0 or 1 depends on the checks but int.
28+
*/
29+
30+
int is_palindrome(listint_t **head)
31+
{
32+
listint_t *start = NULL, *end = NULL;
33+
unsigned int i = 0, len = 0, len_cyc = 0, len_list = 0;
34+
35+
if (head == NULL)
36+
37+
{
38+
return (0);
39+
}
40+
41+
42+
if (*head == NULL)
43+
44+
{
45+
return (1);
46+
}
47+
48+
49+
start = *head;
50+
len = listnums_int(start);
51+
len_cyc = len * 2;
52+
len_list = len_cyc - 2;
53+
end = *head;
54+
55+
for (; i < len_cyc; i = i + 2)
56+
{
57+
if (start[i].n != end[len_list].n)
58+
59+
{
60+
return (0);
61+
}
62+
63+
len_list = len_list - 2;
64+
}
65+
66+
return (1);
67+
}

0x03-python-data_structures/13-main.c

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#include <stdio.h>
2+
#include <stdlib.h>
3+
#include "lists.h"
4+
5+
/**
6+
* main - check the code for
7+
*
8+
* Return: Always 0.
9+
*/
10+
int main(void)
11+
{
12+
listint_t *head;
13+
14+
head = NULL;
15+
add_nodeint_end(&head, 1);
16+
add_nodeint_end(&head, 17);
17+
add_nodeint_end(&head, 972);
18+
add_nodeint_end(&head, 50);
19+
add_nodeint_end(&head, 98);
20+
add_nodeint_end(&head, 98);
21+
add_nodeint_end(&head, 50);
22+
add_nodeint_end(&head, 972);
23+
add_nodeint_end(&head, 17);
24+
add_nodeint_end(&head, 1);
25+
print_listint(head);
26+
27+
if (is_palindrome(&head) == 1)
28+
printf("Linked list is a palindrome\n");
29+
else
30+
printf("Linked list is not a palindrome\n");
31+
32+
free_listint(head);
33+
34+
return (0);
35+
}
+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
#include <stdio.h>
2+
#include <stdlib.h>
3+
#include "lists.h"
4+
5+
/**
6+
* print_listint - prints all elements of a listint_t list
7+
* @h: pointer to head of list
8+
* Return: number of nodes
9+
*/
10+
size_t print_listint(const listint_t *h)
11+
{
12+
const listint_t *current;
13+
unsigned int n; /* number of nodes */
14+
15+
current = h;
16+
n = 0;
17+
while (current != NULL)
18+
{
19+
printf("%i\n", current->n);
20+
current = current->next;
21+
n++;
22+
}
23+
24+
return (n);
25+
}
26+
27+
/**
28+
* add_nodeint_end - adds a new node at the end of a listint_t list
29+
* @head: pointer to pointer of first node of listint_t list
30+
* @n: integer to be included in new node
31+
* Return: address of the new element or NULL if it fails
32+
*/
33+
listint_t *add_nodeint_end(listint_t **head, const int n)
34+
{
35+
listint_t *new;
36+
listint_t *current;
37+
38+
current = *head;
39+
40+
new = malloc(sizeof(listint_t));
41+
if (new == NULL)
42+
return (NULL);
43+
44+
new->n = n;
45+
new->next = NULL;
46+
47+
if (*head == NULL)
48+
*head = new;
49+
else
50+
{
51+
while (current->next != NULL)
52+
current = current->next;
53+
current->next = new;
54+
}
55+
56+
return (new);
57+
}
58+
59+
/**
60+
* free_listint - frees a listint_t list
61+
* @head: pointer to list to be freed
62+
* Return: void
63+
*/
64+
void free_listint(listint_t *head)
65+
{
66+
listint_t *current;
67+
68+
while (head != NULL)
69+
{
70+
current = head;
71+
head = head->next;
72+
free(current);
73+
}
74+
}

0x03-python-data_structures/lists.h

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#ifndef LISTS_H
2+
#define LISTS_H
3+
4+
#include <stdlib.h>
5+
6+
/**
7+
* struct listint_s - singly linked list
8+
* @n: integer
9+
* @next: points to the next node
10+
*
11+
* Description: singly linked list node structure
12+
* for project
13+
*/
14+
typedef struct listint_s
15+
{
16+
int n;
17+
struct listint_s *next;
18+
} listint_t;
19+
20+
size_t print_listint(const listint_t *h);
21+
listint_t *add_nodeint_end(listint_t **head, const int n);
22+
void free_listint(listint_t *head);
23+
24+
int is_palindrome(listint_t **head);
25+
size_t listnums_int(const listint_t *hnums);
26+
27+
#endif /* LISTS_H */

0 commit comments

Comments
 (0)