代码搜索:ListNode
找到约 740 项符合「ListNode」的源代码
代码结果 740
www.eeworm.com/read/326600/13132045
cpp headlist_main.cpp
#include "Headlist.h"
int main()
{
List l1(0);
Listnode *p;
int m;
int a[10]={8,4,2,5,4,3,4,7,1,4};
l1.create(10,a);
cout
www.eeworm.com/read/326600/13132049
cpp headlist.cpp
#include "Headlist.h"
Listnode::Listnode(int value):data(value),link(NULL){}
Listnode *Listnode::getnode(int value,Listnode *next=NULL)
{
Listnode *newnode=new Listnode(value);
newnode->lin
www.eeworm.com/read/139477/13154618
h temlistnode.h
// this file presents a definition to the template clss Listnode
#ifndef TEMLISTNODE_H
#define TEMLISTNODE_H
#include
template class List;
template < class Nodetype>
www.eeworm.com/read/325486/13201074
java orderedlist.java
// Introduced in Chapter 11
/** A linked list of Comparable items, in increasing order. */
public class OrderedList
implements Set, Predecessor {
/** The first node
www.eeworm.com/read/325486/13201111
java linkedstack.java
// Introduced in Chapter 6
/** A linked Stack. */
public class LinkedStack implements Stack {
/** The top ListNode in the Stack. */
private ListNode top;
/** The Stack is initially em
www.eeworm.com/read/325486/13201149
java linkedlist.java
// Introduced in Chapter 6
/** A linked list. */
public class LinkedList implements List, Predecessor {
/** The first node in the List. */
private ListNode front;
/** A LinkedList
www.eeworm.com/read/325486/13201364
java linkedqueue.java
// Introduced in Chapter 6
/** A linked Queue. */
public class LinkedQueue implements Queue {
/** The front ListNode in the Queue. */
private ListNode front;
/** The back ListNode in
www.eeworm.com/read/240259/13228574
cpp recurve.cpp
//递归运算(栈的应用)Recurve.cpp
#include
#include
class list;
class listnode{
friend class list;
int data;
listnode *link;
listnode(int value,listnode *zz):data(value)
www.eeworm.com/read/138460/13235360
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// ListNode.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.
www.eeworm.com/read/239684/13261571
java linkedlist.java
/**
* Title: LinkedList.java
* Description: Contains classes for linked list
*
* (for Lab03 Q1, Q2 & Q3)
*/
import java.util.Iterator;
class ListNode {
private Object data;
private