代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/259580/11779923
cpp unionfindwithchains.cpp
// union/find using chains and size info
// integer pointers used
#include
#include "equivNode.h"
using namespace std;
equivNode *node; // array of nodes
int n; // num
www.eeworm.com/read/155858/11843000
cpp 4elist1511.cpp
//Listing 15.11 Array of pointers to member functions
#include
using std::cout;
class Dog
{
public:
void Speak()const { cout
www.eeworm.com/read/151476/12207254
makefile
include Makefile.h
all::
CODE_DIRS = basics details \
poly traits inherit meta exprtmpl \
types pointers tuples functors
all::
@for DIR in $(CODE_DIRS); \
do \
www.eeworm.com/read/253260/12234785
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/253260/12235511
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/337096/12391826
cpp swaps.cpp
// swaps.cpp -- swapping with references and with pointers
#include
void swapr(int & a, int & b); // a, b are aliases for ints
void swapp(int * p, int * q); // p, q are addresses of
www.eeworm.com/read/148696/12441039
cpp handle_exception.cpp
#include
#define OUR_EXCEPTION 0xE0000001
LONG WINAPI OurUnhandledExceptionFilter(LPEXCEPTION_POINTERS lpExceptionData)
{
EXCEPTION_RECORD *ExceptionRecord = lpExceptionData-
www.eeworm.com/read/128628/14286683
cpp handle_exception.cpp
#include
#define OUR_EXCEPTION 0xE0000001
LONG WINAPI OurUnhandledExceptionFilter(LPEXCEPTION_POINTERS lpExceptionData)
{
EXCEPTION_RECORD *ExceptionRecord = lpExceptionData-
www.eeworm.com/read/128030/14318678
cpp ptrsort.cpp
// ptrsort.cpp
// sorts an array using pointers
#include
using namespace std;
int main()
{
void bsort(int*, int); //prototype
const int N = 10; //array si
www.eeworm.com/read/126474/14422057
inc dos.inc
; DOS Interface Macros - Version 1.3 - for Microsoft Macro Assembler 6.1
; (C) Copyright Microsoft Corporation, 1987, 1988, 1989, 1990, 1993
; Typedefs for testing pointers
NPVOID TYPEDEF NEAR P