代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/146126/12668587

h skipnode.h

// node type used in skip lists // node with a next and element field; element is a pair // next is a 1D array of pointers #ifndef skipNode_ #define skipNode_ template
www.eeworm.com/read/146126/12668654

h binnode.h

// struct used by bipartite cover #ifndef binNode_ #define binNode_ struct binNode { int left, right; // pointers to left and right nodes }; #endif
www.eeworm.com/read/245818/12779149

c quotes.c

/* quotes.c -- strings as pointers */ #include int main(void) { printf("%s, %p, %c\n", "We", "are", *"space farers"); return 0; }
www.eeworm.com/read/144420/12796065

java linked-06.java

//=====================程序描述================== //程序名称:linked-06.java //程序目的:演示单链表的删除 //作者:张中强 //=====================程序描述================== class linked03 { public static void main(String arg
www.eeworm.com/read/144420/12796068

java linked-03.java

//=====================程序描述================== //程序名称:linked-03.java //程序目的:演示单链表的存入和读取 //作者:张中强 //=====================程序描述================== class linked03 { public static void main(String
www.eeworm.com/read/144420/12796075

java linked-01.java

//=====================程序描述================== //程序名称:linked-01.java //程序目的:演示遍历简单链表 //作者:张中强 //=====================程序描述================== class linked01 { public static void main(String arg
www.eeworm.com/read/144420/12796079

java linked-04.java

//=====================程序描述================== //程序名称:linked-04.java //程序目的:演示单链表的查找 //作者:张中强 //=====================程序描述================== class linked03 { public static void main(String arg
www.eeworm.com/read/144420/12796085

java linked-05.java

//=====================程序描述================== //程序名称:linked-05.java //程序目的:演示单链表的插入 //作者:张中强 //=====================程序描述================== class linked03 { public static void main(String arg
www.eeworm.com/read/244978/12827785

pas plugininterface.pas

unit PlugInInterface; interface ////////////////////////////////////// // // InitPlugIn : String // InitPointers (Array of pointers) implementation end.
www.eeworm.com/read/319883/13440440

cpp box.cpp

// Program 11.2 Using pointers to Box objects. File: box.cpp // Defines the Box member function #include "box.h" // Box function to calculate volume double Box::volume() { return length * w