Bonjour,

Je cherche à faire une refonte de ma bibliothèque de fonctions en tenant compte de mes erreurs passées.
J'en profite pour essayer d'y intégrer de nouvelles fonctions de manipulation des pointeurs dites standards/usuelles.

Ces fonctions seront appliquées à tous les types, de short à unsigned long long int.
Ensuite, elles seront "réencapsulées" dans une structure qui gérera implicitement la taille des tableaux 1D.
Ensuite idem pour les tableaux 2D puis 3D.

Et en parallèle, l'écriture d'une documentation sous doxygen.

Par conséquent, voici le header pour les pointeurs d'entiers de type int en 1D sans gestion implicite des tailles.
Je pense que les noms de fonctions sont explicites, si ce n'est pas le cas, je préciserai.
L'esprit est que si vous avez d'autres fonctions du genre à proposer, je suis preneur.

En vous remerciant par avance.

ptr.h
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
#ifndef PTR_H
#define PTR_H
 
#define TRUE 1
#define FALSE 0
 
typedef long long int t_int64;
typedef unsigned long long int t_uint64;
typedef unsigned short t_boolean;
 
void      i_1D_deallocate      ( int *p );
int      *i_1D_allocate        ( t_uint64 p_sz );
t_boolean i_1D_realloc         ( int **p, t_uint64 *p_sz, t_uint64 new_sz );
t_boolean i_1D_insert          ( int **p, t_uint64 *p_sz, t_uint64 offset, int v );
int      *i_1D_extract         ( int *p, t_uint64 p_sz, t_uint64 i0, t_uint64 i1, t_uint64 *q_sz );
t_boolean i_1D_split           ( int *p, t_uint64 *p_sz, int **p1, t_uint64 *p1_sz, int **p2, t_uint64 *p2_sz, t_uint64 offset );
t_boolean i_1D_remove          ( int **p, t_uint64 *p_sz, t_uint64 offset );
int      *i_1D_copy            ( int *p, t_uint64 p_sz );
t_boolean i_1D_replace         ( int *p0, t_uint64 p0_sz, int *p1, t_uint64 p1_sz );
t_boolean i_1D_init            ( int *p, t_uint64 p_sz, t_uint64 v );
int      *i_1D_rshift          ( int *p, t_uint64 p_sz, t_uint64 shift );
int      *i_1D_lshift          ( int *p, t_uint64 p_sz, t_uint64 shift );
t_boolean i_1D_rshift_self     ( int *p, t_uint64 p_sz, t_uint64 shift );
t_boolean i_1D_lshift_self     ( int *p, t_uint64 p_sz, t_uint64 shift );
void      i_1D_replace_partial ( int *p0 , int *p1, t_int64 i_for_start, t_uint64 i_for_end, t_uint64 i_p0, t_int64 i_p1, short p0_sign, short p1_sign );
 
#endif
Juste pour info bien que non pertinent ici.

ptr.c
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
#include <stdio.h>
#include <stdlib.h>
#include "ptr.h"
 
void i_1D_deallocate( int *p )
{
    if ( p ) { free( p ), p = NULL; }
}
 
int *i_1D_allocate( t_uint64 p_sz )
{
    int *p = NULL;
    if ( ( p = (int*)malloc( p_sz*sizeof(int) ) ) )
    {
        t_uint64 i;
        for ( i=0 ; i<p_sz ; i++ )
            p[i] = 0;
    }
    return p;
}
 
t_boolean i_1D_realloc( int **p, t_uint64 *p_sz, t_uint64 new_sz )
{
    t_boolean b = FALSE;
    if ( *p && new_sz != 0 )
    {
        int *p_realloc = NULL;
        if ( ( p_realloc = (int*)realloc( (*p), new_sz*sizeof(int) ) ) )
        {
            (*p) = p_realloc;
            t_uint64 i;
            for ( i=*p_sz ; i<new_sz ; i++ )
                (*p)[i] = 0;
 
            *p_sz = new_sz;
            b = TRUE;
        }
    }
    return b;
}
 
t_boolean i_1D_insert( int **p, t_uint64 *p_sz, t_uint64 offset, int v )
{
    t_boolean b = FALSE;
    if ( *p && 0 <= offset && offset < *p_sz+1 )
    {
        if ( i_1D_realloc( p, p_sz, *p_sz+1 ) == TRUE )
        {
            t_uint64 i;
             for ( i=(*p_sz)-1 ; i>offset ; i-- )
                (*p)[i] = (*p)[i-1];
 
            (*p)[offset] = v;
            b = TRUE;
        }
    }
    return b;
}
 
int *i_1D_extract( int *p, t_uint64 p_sz, t_uint64 i0, t_uint64 i1, t_uint64 *q_sz )
{
    int *q = NULL;
    if ( p && p_sz >= i1-i0 )
    {
        *q_sz = i1-i0+1;
        if ( ( q = i_1D_allocate(*q_sz) ) )
            i_1D_replace_partial( q, p, i0, i1+1, i0, 0, 1, 1 );
    }
    return q;
}
 
t_boolean i_1D_split( int *p, t_uint64 *p_sz, int **p1, t_uint64 *p1_sz, int **p2, t_uint64 *p2_sz, t_uint64 offset )
{
    t_boolean b = FALSE;
    if ( p && 0 <= offset && offset < *p_sz )
    {
        if ( ((*p1) = i_1D_extract( p, *p_sz, 0, offset, p1_sz )) && ((*p2) = i_1D_extract( p, *p_sz, offset+1, *p_sz-1, p2_sz )) )
            b = TRUE;
 
    }
    return b;
}
 
int *i_1D_copy( int *p, t_uint64 p_sz )
{
    int *q = NULL;
    if ( p && p_sz != 0 )
    {
        if ( ( q = i_1D_allocate(p_sz) ) )
            i_1D_replace_partial( q, p, 0, p_sz, 0, 0, 1, 1);
    }
    return q;
}
 
t_boolean i_1D_remove( int **p, t_uint64 *p_sz, t_uint64 offset )
{
    t_boolean b = FALSE;
    if ( *p && 0 <= offset && offset < *p_sz )
    {
        t_uint64 q_sz = *p_sz; t_uint64 index = 0;
        int *q = i_1D_copy( (*p), *p_sz );
        if ( i_1D_realloc( p, p_sz, *p_sz-1 ) == TRUE )
        {
            t_uint64 i;
            for ( i=0 ; i<q_sz ; i++ )
            {
                if ( i != offset )
                    (*p)[index] = q[i], index++;
            }
            i_1D_deallocate( q );
            b = TRUE;
        }
    }
    return b;
}
 
t_boolean i_1D_replace( int *p0, t_uint64 p0_sz, int *p1, t_uint64 p1_sz )
{
    t_boolean b = FALSE;
    if ( p0 && p1 && p0_sz >= p1_sz )
    {
        i_1D_replace_partial( p0, p1, 0, p1_sz, 0, 0, 1, 1);
        b = TRUE;
    }
    return b;
}
 
t_boolean i_1D_init( int *p, t_uint64 p_sz, t_uint64 v )
{
    t_boolean b = FALSE;
    if ( *p && p_sz > 0 )
    {
        t_uint64 i = 0;
        for ( i=0 ; i<p_sz ; i++ )
            p[i] = v;
 
        b = TRUE;
    }
    return b;
}
 
void i_1D_replace_partial( int *p0 , int *p1, t_int64 i_for_start, t_uint64 i_for_end, t_uint64 i_p0, t_int64 i_p1, short p0_sign, short p1_sign )
{
    t_int64 i = 0;
    for ( i=i_for_start ; i<i_for_end ; i++ )
        p0[i+p0_sign*i_p0] = p1[i+p1_sign*i_p1];
}
 
int *i_1D_rshift( int *p, t_uint64 p_sz, t_uint64 shift )
{
    int *q = NULL;
    if ( p && p_sz>0 && shift>= 0 )
    {
        shift %= p_sz;
        if ( shift != 0 )
        {
            int *r = NULL;
            if ( ( r = i_1D_allocate(p_sz + shift) ) )
            {
                i_1D_replace_partial( r, p, 0, p_sz, shift, 0, 1, 1);
                if ( ( q = i_1D_allocate( p_sz ) ) )
                {
                    i_1D_replace_partial( q, r, p_sz, p_sz+shift, p_sz, 0, -1, 1);
                    i_1D_replace_partial( q, r, shift, p_sz, 0, 0, 1, 1);
                }
                i_1D_deallocate( r );
            }
        }
        else
        {
            if ( !( q = i_1D_copy( p, p_sz ) ) );
        }
    }
    return q;
}
 
int *i_1D_lshift( int *p, t_uint64 p_sz, t_uint64 shift )
{
    int *q = NULL;
    if ( p && p_sz>0 && shift>= 0 )
    {
        shift %= p_sz;
        if ( !( q = i_1D_rshift(p, p_sz, p_sz-shift) ) );
    }
    return q;
}
 
t_boolean i_1D_rshift_self( int *p, t_uint64 p_sz, t_uint64 shift )
{
    t_boolean b = FALSE;
    int *q = NULL;
    if ( ( q = i_1D_rshift( p, p_sz, shift ) ) )
    {
        i_1D_replace_partial( p, q, 0, p_sz, 0, 0, 1, 1 );
        i_1D_deallocate( q );
        b = TRUE;
    }
    return b;
}
 
t_boolean i_1D_lshift_self( int *p, t_uint64 p_sz, t_uint64 shift )
{
    t_boolean b = FALSE;
    int *q = NULL;
    if ( ( q = i_1D_lshift( p, p_sz, shift ) ) )
    {
        i_1D_replace_partial( p, q, 0, p_sz, 0, 0, 1, 1 );
        i_1D_deallocate( q );
        b = TRUE;
    }
    return b;
}