代码搜索:linked
找到约 4,326 项符合「linked」的源代码
代码结果 4,326
www.eeworm.com/read/271450/10994388
h stack2.h
//: C05:Stack2.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Nested structs via linked list
www.eeworm.com/read/465911/7048794
m sl_free.m
function head=sl_free(sl)
% SL_FREE
%
% head=SL_FREE(sl) frees the memory allocated to the singly linked
% list head.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
if narg
www.eeworm.com/read/465911/7048800
m sl_disp.m
function sl_disp(sl)
% SL_DISP
%
% SL_DISP(sl) displays a singly linked list using the traverse
% routine:
% sl_trav(sl,'disp')
% Copyright (c) MathWorks Inc. 1998-2001. All rights reser
www.eeworm.com/read/140797/7146867
c free.c
/*
* free.c
*
* Very simple linked-list based malloc()/free().
*/
#include
#include "malloc.h"
static struct free_arena_header *
__free_block(struct free_arena_header *ah)
{
struct
www.eeworm.com/read/140797/7147049
c free.c
/*
* free.c
*
* Very simple linked-list based malloc()/free().
*/
#include
#include "malloc.h"
static struct free_arena_header *
__free_block(struct free_arena_header *ah)
{
struct
www.eeworm.com/read/140797/7147057
c malloc.c
/*
* malloc.c
*
* Very simple linked-list based malloc()/free().
*/
#include
#include "init.h"
#include "malloc.h"
struct free_arena_header __malloc_head =
{
{
ARENA_TYPE_HEAD,
www.eeworm.com/read/459616/7270269
cpp lstack.cpp
// test linked stack class
#include
#include "lstack.h"
void main(void)
{
int x;
LinkedStack S;
try {S.Add(1).Add(2).Add(3).Add(4);}
catch (NoMem) {
cout
www.eeworm.com/read/459616/7270616
cpp dlstack.cpp
// test derived linked stack
#include
#include "dlstack.h"
void main(void)
{
int x;
LinkedStack S;
try {S.Add(1).Add(2).Add(3).Add(4);}
catch (NoMem) {
cout
www.eeworm.com/read/459616/7270633
cpp lqueue.cpp
// test linked queue class
#include
#include "lqueue.h"
void main(void)
{
LinkedQueue Q;
int x;
try {Q.Add(1).Add(2).Add(3).Add(4);
cout