代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/424538/10440126
c cimgnbmap.c
/*================================================================
* function [i,j] = cimgnbmap([nr,nc], nb_r, sample_rate)
* computes the neighbourhood index matrix of an image,
* with each neigh
www.eeworm.com/read/161187/10440205
cpp listquerydocument.cpp
/**
*
* @brief Definition of CListQueryDocument
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "ListQueryDocument.h"
// User inc
www.eeworm.com/read/161187/10440206
cpp listquerycontainer.cpp
/**
*
* @brief Definition of CListQueryContainer
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "ListQueryContainer.h"
// System
www.eeworm.com/read/161186/10440231
cpp dynamiclistdocument.cpp
/**
*
* @brief Definition of CDynamicListDocument
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "DynamicListDocument.h"
// User
www.eeworm.com/read/161185/10440287
cpp tcpipimpexdocument.cpp
/**
*
* @brief Definition of CTcpipImpExDocument
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "TcpipImpExDocument.h"
// User in
www.eeworm.com/read/161183/10440566
cpp doublebufferedarea.cpp
/**
*
* @brief Definition of CDoubleBufferedArea
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
#include "DoubleBufferedArea.h"
// System includes
#include
www.eeworm.com/read/161183/10440578
cpp skiingdocument.cpp
/**
*
* @brief Definition of CSkiingDocument
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
// Class include
#include "SkiingDocument.h"
// User includes
www.eeworm.com/read/279234/10453152
pm binarysearchtree.pm
# Fig. 20.11: BinarySearchTree.pm
# Implementation of a binary search tree.
use warnings;
use strict;
package TreeNode;
my $class;
# TreeNode constructor
sub new
{
my $type = shift(
www.eeworm.com/read/279234/10453176
pm linkedlist.pm
# Fig. 20.6: LinkedList.pm
# Object-oriented linked-list implementation.
use warnings;
use strict;
package ListNode; # start package ListNode
# ListNode constructor
sub new
{
my
www.eeworm.com/read/279234/10453182
pm hashtable.pm
# Fig. 20.12: Hashtable.pm
# Simple hash table implementation.
use warnings;
use strict;
package Hashtable;
# Hashtable constructor
sub new
{
my $type = shift();
my $class = ref(