代码搜索:ListNode
找到约 740 项符合「ListNode」的源代码
代码结果 740
www.eeworm.com/read/100135/15883044
c globals.c
/*
* globals.c -- File containing all variables/tables visible to all files.
*
* SOFTWARE RIGHTS
*
* We reserve no LEGAL rights to the Purdue Compiler Construction Tool
* Set (PCCTS) -- PCCTS is
www.eeworm.com/read/291961/8385296
c lists.c
/*
* avrdude - A Downloader/Uploader for AVR device programmers
* Copyright (C) 1990-2004 Brian S. Dean
*
* This program is free software; you can redistribute it and/or modify
www.eeworm.com/read/390464/8464503
cpp selectkingofmonkey.cpp
// SelectKingOfMonkey.cpp : Defines the entry point for the console application.
//
#include
#include
typedef struct listnode{
int data;
struct listnode * next;
www.eeworm.com/read/187475/8637575
c intlist.c
#include
#include
#include "IntList.h"
// Constructor
IntList::IntList()
:head(NULL), len(0)
{
}
// Copy constructor
IntList::IntList(const IntList& il)
{
print
www.eeworm.com/read/382773/9000637
cpp 顺序表.cpp
#include
#include
#include
#define LENGTH 30
typedef int ElemType;
typedef struct {
ElemType *data;
int length;//第几个元素
int size;
}ListNode;
//创建一个
www.eeworm.com/read/164335/10117058
h linkedlist.h
#ifndef LINKED_LIST_CLASS
#define LINKED_LIST_CLASS
#include
#include
#include
#include "ListNode.h"
enum SortOrder{Ascending, Descending};
template
www.eeworm.com/read/358784/10179598
asm list.asm
TITLE Creating a Linked List (List.asm)
; This program shows how the STRUC directive
; and the REPT directive can be combined to
; create a linked list at assembly time.
; Last update
www.eeworm.com/read/279475/10434882
cpp 长整数加法.cpp
#include
class listnode//定义结点类
{
public:
listnode *right;
listnode *left;
int data;
listnode(int &inteval,listnode *a=NULL,listnode *b=NULL)
{
data=inteval;right=a;left=b;
www.eeworm.com/read/279175/10457089
h linklist.h
/* Generic linked list
* Copyright (C) 1997, 2000 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify it
* under the terms
www.eeworm.com/read/466944/7024104
java linkedlistitr.java
package DataStructures;
// LinkedListItr class; maintains "current position"
//
// CONSTRUCTION: Package friendly only, with a ListNode
//
// ******************PUBLIC OP