代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/259580/11780511

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/259580/11780676

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/259580/11780803

output completewinnertree.output

Enter number of players, >= 2 Enter player values The winner tree is number of players = 10 lowExt = 4 offset = 15 complete winner tree pointers are 10 3 10 3 5 8 10 1 3 Changed player 2 to ze
www.eeworm.com/read/258191/11879181

cpp pmem.cpp

//: C11:Pmem.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Pointers to members class Widget
www.eeworm.com/read/153678/12013476

cpp pmem.cpp

//: C11:Pmem.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Pointers to members class
www.eeworm.com/read/254636/12125829

cpp hash.cpp

#include #include #include #include #include #include // remove(), rename(); using namespace std; const int bucketSize = 2, tableSize = 3,
www.eeworm.com/read/253969/12172547

pas plugininterface.pas

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

cpp list0802.cpp

// Listing 8.2 Using pointers #include typedef unsigned short int USHORT; int main() { using namespace std; USHORT myAge; // a variable USHORT * pAge = 0;
www.eeworm.com/read/132141/14107208

h skipnode.h

#ifndef SkipNode_ #define SkipNode_ template class SkipList; template class SkipNode { friend SkipList; private: SkipNode(int size)
www.eeworm.com/read/233206/14163274

cpp func.cpp

/* func.cpp -- A program demonstrating function pointers. */ #include void TestFunc (); int main () { void (*FunctionName)(void); FunctionName = TestFunc; Fun