代码搜索:linked

找到约 4,326 项符合「linked」的源代码

代码结果 4,326
www.eeworm.com/read/171581/5393419

java abstracttokenmaker.java

/* * 11/07/2004 * * AbstractTokenMaker.java - An abstract implementation of TokenMaker. * Copyright (C) 2004 Robert Futrell * email@address.com * www.website.com * * This program is fr
www.eeworm.com/read/171581/5393784

java~1~ abstractjflextokenmaker.java~1~

/* * 03/23/2005 * * AbstractJFlexTokenMaker.java - Base class for token makers generated from * programs such as JFlex. * Copyright (C) 2005 Robert Futrell * email@address.com * www.webs
www.eeworm.com/read/171581/5393785

java~2~ abstractjflextokenmaker.java~2~

/* * AbstractJFlexTokenMaker.java - Base class for token makers generated from * programs such as JFlex. */ package org.fife.ui.rsyntaxtextarea; import javax.swing.text.Segment; /** *
www.eeworm.com/read/169775/5410498

c cplusxtors.c

/* cplusXtors.c - run time support for static ctors and dtors */ /* Copyright 1993 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* modification history -------------------- 01f,19mar02,sn
www.eeworm.com/read/169681/5415741

c usblistlib.c

/* usbListLib.c - Linked list utility functions */ /* Copyright 2000 Wind River Systems, Inc. */ /* Modification history -------------------- 01a,10jun99,rcb First. */ /* DESCRIPTION This file in
www.eeworm.com/read/474431/6809346

h node.h

/* ** Sample declaration for a linked list node. Change this declaration ** as appropriate for your list values and recompile the linked list ** search function with it. Note that the value can b
www.eeworm.com/read/194719/8187363

h moves.h

/**************************************************** Author: S. Senthil kumar Class Name: Moves Purpose: To Generate Moves and store in a linked list ****************************************
www.eeworm.com/read/393250/8302264

txt 2.14.txt

int Length(LinkList L) // Return the length of the linked list // whose head node is pointed by 'L' { int i=0; LNode * p; p=L; while(p->next){ p=p->next;i++ ; } retu
www.eeworm.com/read/293108/8314809

c 实验三参考答案.c

/* HELLO.C -- Hello, world */ #include #include #include #define OK 1 #define ERROR 0 typedef int ElemType; typedef int Status; typedef struct LinkedNode{
www.eeworm.com/read/249070/12523354

txt c04p199.txt

// Saves a linked list誷 data in a text file of // integers; head points to the linked list. // fileName is a string that names an external text // file to be created ofstream outFile(fileName); // t