Thread Ein Katalog-System: Titel und Untertitel (15 answers)
Opened by Gast at 2004-04-18 16:40

Gast Gast
 2004-04-24 21:13
#81669 #81669
Also ich hab das jetzt mal ganz 'flach' aufgebaut (linear, keine Rekursion verwendet) und kann damit dann tatsächlich den Index für jedes Array-Element ermitteln.
Der nachfolgende Code ist natürlich mehr als unbefriediegend - aber immerhin ein Ansatz für nachfolgende Optimierung.
Code: (dl )
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
#!/usr/bin/perl
#-#############################################
# catalog.pl
# Version: 1.04
# Date: 04/25/2004
# Written by Dieter Werner
#-#############################################
   print "Content-type: text/html\n\n";
   use strict;
   use warnings;
#-#############################################

my $categories = [
   ['Telekommunikation',
['Festnetz',
['Telefon',
['Foo', 'Bar'],
],
['Telefax',
['Foo', 'Bar'],
],
],
['Mobilnetz',
['Handy used',
['Siemens',
['C25', 'C35', 'Other'],
],
['Nokia',
['5130', '7710', '8810', 'Other'],
],
['Panasonic',
['GD90', 'GD91', 'GD92'],
],
],
['Handy unused',
['Siemens',
['C25', 'C35', 'Other'],
],
['Nokia',
['5130', '7710', '8810', 'Other'],
],
['Panasonic',
['GD90', 'GD91', 'GD92'],
],
],
],
   ],
   
   ['Computer',
['Hardware',
['Monitor',
['Eizo',
['15 Zoll', '17 Zoll', '19 Zoll', '20 Zoll'],
],
['Other',
    ['15 Zoll', '17 Zoll', '19 Zoll', '20 Zoll'],
],
],
['CPU',
['Intel',
    ['up to 300 MHz', 'up to 600 MHz', 'up to 900 MHz'],
],
['AMD',
    ['up to 300 MHz', 'up to 600 MHz', 'up to 900 MHz'],
],
['Other',
    ['up to 300 MHz', 'up to 600 MHz', 'up to 900 MHz'],
],
],
],
['Software',
    ['Operating Systems',
['Windows', 'Linux'],
    ],
['Applications',
['Office-Software', 'Internet-Software', 'Games'],
    ],
],
   ],
];
   
#-#############################################
# Read from array
# and print a list of all categories => Indices
#-#############################################
my $catalog = {};

   dump_cat_1($_, $categories->[$_], $catalog) for 0 .. 1;
   print "$_ => $catalog->{$_}<br>" foreach sort keys %$catalog;
 
#-#############################################
# Dump Level 1
#-#############################################
sub dump_cat_1 {
   my ($cnt, $cat, $catalog) = @_;
my @index;
local $_;
       
for (0 .. $#$cat) {
ref $cat->[$_]
? dump_cat_2($cat->[$_], $catalog, \@index)
: do {
@index = ($cnt, $_);
$catalog->{join('_', @index)} = $cat->[$_];
}
}
}

#-#############################################
# Dump Level 2
#-#############################################
sub dump_cat_2 {
   my ($cat, $catalog, $index) = @_;
local $_;

for (0 .. $#$cat) {
ref $cat->[$_]
? dump_cat_3($cat->[$_], $catalog, $index)
: do {
$_ == 0
? (@$index = ($index->[0], ++$index->[1], $_))
: (@$index = (@$index[0 .. 1], $_));

$catalog->{join('_', @$index)} = $cat->[$_];
}
}
}

#-#############################################
# Dump Level 3
#-#############################################
sub dump_cat_3 {
   my ($cat, $catalog, $index) = @_;
local $_;

for (0 .. $#$cat) {
ref $cat->[$_]
? dump_cat_4($cat->[$_], $catalog, $index)
: do {
$_ == 0
? (@$index = (@$index[0 .. 1], ++$index->[2], $_))
: (@$index = (@$index[0 .. 2], $_));

$catalog->{join('_', @$index)} = $cat->[$_];
}
}
}
 
#-#############################################
# Dump Level 4
#-#############################################
sub dump_cat_4 {
   my ($cat, $catalog, $index) = @_;
local $_;

for (0 .. $#$cat) {
ref $cat->[$_]
? dump_cat_5($cat->[$_], $catalog, $index)
: do {
$_ == 0
? (@$index = (@$index[0 .. 2], ++$index->[3], $_))
: (@$index = (@$index[0 .. 3], $_));

$catalog->{join('_', @$index)} = $cat->[$_];
}
}
}
 
#-#############################################
# Dump Level 5
#-#############################################
sub dump_cat_5 {
   my ($cat, $catalog, $index) = @_;
local $_;

for (0 .. $#$cat) {
ref $cat->[$_]
? dump_cat_6($cat->[$_], $catalog, $index)
: do {
$_ == 0
? (@$index = (@$index[0 .. 3], ++$index->[4], $_))
: (@$index = (@$index[0 .. 4], $_));

$catalog->{join('_', @$index)} = $cat->[$_];
}
}
}

#-#############################################
# Dump Level 6
#-#############################################
sub dump_cat_6 {
   my ($cat, $catalog, $index) = @_;
local $_;

for (0 .. $#$cat) {
ref $cat->[$_]
? dump_cat_7($cat->[$_], $catalog, $index)
: do {
$_ == 0
? (@$index = (@$index[0 .. 4], ++$index->[5], $_))
: (@$index = (@$index[0 .. 5], $_));

$catalog->{join('_', @$index)} = $cat->[$_];
}
}
}

#-#############################################
exit;


Ächz - warum übernimmt das Forum meine Formatierung nicht??

Edit: Code verbessert und eingekürzt.\n\n

<!--EDIT|Dieter|1082892442-->

View full thread Ein Katalog-System: Titel und Untertitel