Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DOUAR WSMP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HUGG
DOUAR WSMP
Commits
dd19b34b
Commit
dd19b34b
authored
15 years ago
by
Douglas Guptill
Browse files
Options
Downloads
Patches
Plain Diff
Ooops
parent
c8a81f92
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NN/stackpair.c
+58
-58
58 additions, 58 deletions
NN/stackpair.c
NN/stackpair.cc
+0
-58
0 additions, 58 deletions
NN/stackpair.cc
with
58 additions
and
116 deletions
NN/stackpair.c
+
58
−
58
View file @
dd19b34b
static
struct
node
{
int
key
;
struct
node
*
next
;
};
static
struct
node
*
heada
,
*
za
,
*
ta
;
static
struct
node
*
headb
,
*
zb
,
*
tb
;
stackpairinit
_
()
{
heada
=
(
struct
node
*
)
malloc
(
sizeof
*
heada
);
za
=
(
struct
node
*
)
malloc
(
sizeof
*
za
);
heada
->
next
=
za
;
heada
->
key
=
0
;
za
->
next
=
za
;
za
->
key
=
0
;
headb
=
(
struct
node
*
)
malloc
(
sizeof
*
headb
);
zb
=
(
struct
node
*
)
malloc
(
sizeof
*
zb
);
headb
->
next
=
zb
;
headb
->
key
=
0
;
zb
->
next
=
zb
;
zb
->
key
=
0
;
}
stackpairflush
_
()
{
free
(
heada
);
free
(
headb
);
free
(
za
);
free
(
zb
);
}
pushpair
_
(
pa
,
pb
)
int
*
pa
;
int
*
pb
;
{
int
va
;
int
vb
;
va
=
*
pa
;
ta
=
(
struct
node
*
)
malloc
(
sizeof
*
ta
);
ta
->
key
=
va
;
ta
->
next
=
heada
->
next
;
heada
->
next
=
ta
;
vb
=
*
pb
;
tb
=
(
struct
node
*
)
malloc
(
sizeof
*
tb
);
tb
->
key
=
vb
;
tb
->
next
=
headb
->
next
;
headb
->
next
=
tb
;
}
poppair
_
(
xa
,
xb
)
int
*
xa
;
int
*
xb
;
{
ta
=
heada
->
next
;
heada
->
next
=
ta
->
next
;
*
xa
=
ta
->
key
;
free
(
ta
);
tb
=
headb
->
next
;
headb
->
next
=
tb
->
next
;
*
xb
=
tb
->
key
;
free
(
tb
);
}
stackpairempty
_
(
i
)
int
*
i
;
{
*
i
=
0
;
if
(
heada
->
next
==
za
)
*
i
=
1
;
}
static
struct
node
{
int
key
;
struct
node
*
next
;
};
static
struct
node
*
heada
,
*
za
,
*
ta
;
static
struct
node
*
headb
,
*
zb
,
*
tb
;
stackpairinit
()
{
heada
=
(
struct
node
*
)
malloc
(
sizeof
*
heada
);
za
=
(
struct
node
*
)
malloc
(
sizeof
*
za
);
heada
->
next
=
za
;
heada
->
key
=
0
;
za
->
next
=
za
;
za
->
key
=
0
;
headb
=
(
struct
node
*
)
malloc
(
sizeof
*
headb
);
zb
=
(
struct
node
*
)
malloc
(
sizeof
*
zb
);
headb
->
next
=
zb
;
headb
->
key
=
0
;
zb
->
next
=
zb
;
zb
->
key
=
0
;
}
stackpairflush
()
{
free
(
heada
);
free
(
headb
);
free
(
za
);
free
(
zb
);
}
pushpair
(
pa
,
pb
)
int
*
pa
;
int
*
pb
;
{
int
va
;
int
vb
;
va
=
*
pa
;
ta
=
(
struct
node
*
)
malloc
(
sizeof
*
ta
);
ta
->
key
=
va
;
ta
->
next
=
heada
->
next
;
heada
->
next
=
ta
;
vb
=
*
pb
;
tb
=
(
struct
node
*
)
malloc
(
sizeof
*
tb
);
tb
->
key
=
vb
;
tb
->
next
=
headb
->
next
;
headb
->
next
=
tb
;
}
poppair
(
xa
,
xb
)
int
*
xa
;
int
*
xb
;
{
ta
=
heada
->
next
;
heada
->
next
=
ta
->
next
;
*
xa
=
ta
->
key
;
free
(
ta
);
tb
=
headb
->
next
;
headb
->
next
=
tb
->
next
;
*
xb
=
tb
->
key
;
free
(
tb
);
}
stackpairempty
(
i
)
int
*
i
;
{
*
i
=
0
;
if
(
heada
->
next
==
za
)
*
i
=
1
;
}
This diff is collapsed.
Click to expand it.
NN/stackpair.cc
deleted
100644 → 0
+
0
−
58
View file @
c8a81f92
static
struct
node
{
int
key
;
struct
node
*
next
;
};
static
struct
node
*
heada
,
*
za
,
*
ta
;
static
struct
node
*
headb
,
*
zb
,
*
tb
;
stackpairinit
()
{
heada
=
(
struct
node
*
)
malloc
(
sizeof
*
heada
);
za
=
(
struct
node
*
)
malloc
(
sizeof
*
za
);
heada
->
next
=
za
;
heada
->
key
=
0
;
za
->
next
=
za
;
za
->
key
=
0
;
headb
=
(
struct
node
*
)
malloc
(
sizeof
*
headb
);
zb
=
(
struct
node
*
)
malloc
(
sizeof
*
zb
);
headb
->
next
=
zb
;
headb
->
key
=
0
;
zb
->
next
=
zb
;
zb
->
key
=
0
;
}
stackpairflush
()
{
free
(
heada
);
free
(
headb
);
free
(
za
);
free
(
zb
);
}
pushpair
(
pa
,
pb
)
int
*
pa
;
int
*
pb
;
{
int
va
;
int
vb
;
va
=
*
pa
;
ta
=
(
struct
node
*
)
malloc
(
sizeof
*
ta
);
ta
->
key
=
va
;
ta
->
next
=
heada
->
next
;
heada
->
next
=
ta
;
vb
=
*
pb
;
tb
=
(
struct
node
*
)
malloc
(
sizeof
*
tb
);
tb
->
key
=
vb
;
tb
->
next
=
headb
->
next
;
headb
->
next
=
tb
;
}
poppair
(
xa
,
xb
)
int
*
xa
;
int
*
xb
;
{
ta
=
heada
->
next
;
heada
->
next
=
ta
->
next
;
*
xa
=
ta
->
key
;
free
(
ta
);
tb
=
headb
->
next
;
headb
->
next
=
tb
->
next
;
*
xb
=
tb
->
key
;
free
(
tb
);
}
stackpairempty
(
i
)
int
*
i
;
{
*
i
=
0
;
if
(
heada
->
next
==
za
)
*
i
=
1
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment