代码搜索:Building

找到约 10,000 项符合「Building」的源代码

代码结果 10,000
www.eeworm.com/read/100128/15883343

readme

Miscellaneous flex stuff. The items which have been tested with flex 2.5 are: - texinfo/, a subdirectory containing a "texinfo" version of flex(1) and the corresponding "info" files (contributed
www.eeworm.com/read/394999/8200121

h cell.h

//The class Cell represents one square in the map #if !defined CELL_H #define CELL_H class Cell { public: Cell (int i=0, int j=0, int k=-1); //i,j为此格的列和行坐标,k为前驱格子在队列数组中的序号 bool operat
www.eeworm.com/read/200012/15443914

txt readme.txt

本程序包括两个函数文件attenuation.m,draw.m,功能如下: attenuation.m——由输入距离d,软隔数p,混泥土间隔q算出衰减db数。 draw.m——由getline函数获得坐标向量值x1,y1,取前两个点,算出石墨点坐标A,B,间隔距离d,软隔数p,混泥土间隔q,接受判断因子f。 getline函数写在界面文件<mark>building</mark>_mode.m中的start_Call ...
www.eeworm.com/read/275831/10794128

rb 11 - building up a hash using injection.rb

collection = [ [1, 'one'], [2, 'two'], [3, 'three'], [4, 'four'], [5, 'five'] ] collection.inject({}) do |hash, value| hash[value.first] = value.last hash end # => {5=