首页 | 官方网站   微博 | 高级检索  
文章检索
  按 检索   检索词:      
出版年份:   被引次数:   他引次数: 提示:输入*表示无穷大
  收费全文   1458篇
  免费   212篇
  国内免费   130篇
工业技术   1800篇
  2024年   7篇
  2023年   47篇
  2022年   56篇
  2021年   81篇
  2020年   77篇
  2019年   54篇
  2018年   64篇
  2017年   62篇
  2016年   68篇
  2015年   72篇
  2014年   106篇
  2013年   95篇
  2012年   131篇
  2011年   130篇
  2010年   88篇
  2009年   78篇
  2008年   73篇
  2007年   72篇
  2006年   54篇
  2005年   59篇
  2004年   48篇
  2003年   39篇
  2002年   38篇
  2001年   21篇
  2000年   17篇
  1999年   20篇
  1998年   13篇
  1997年   13篇
  1996年   14篇
  1995年   12篇
  1994年   12篇
  1993年   3篇
  1992年   8篇
  1991年   5篇
  1990年   6篇
  1988年   2篇
  1987年   3篇
  1986年   2篇
  1985年   4篇
  1984年   2篇
  1983年   4篇
  1982年   2篇
  1981年   4篇
  1980年   3篇
  1979年   5篇
  1978年   3篇
  1974年   5篇
  1965年   2篇
  1964年   4篇
  1956年   3篇
排序方式: 共有1800条查询结果,搜索用时 546 毫秒
71.
CAM(内容可寻址存储器)是一种快速匹配存储器件,在通信、雷达等许多领域有着广泛的应用。在介绍CAM基本原理的基础上,例举了一种基于CAM实现关联比较器的设计方法,通过仿真验证了设计的正确性,基本上实现了雷达信号的纯硬件快速预分选,达到了实时性和可靠性要求。  相似文献   
72.
一种新的分"档"置换插入排序算法   总被引:1,自引:0,他引:1  
近年来,人们提出了众多时间复杂度为O(n)的排序算法.但分析研究结果表明,上述排序方法都不同程度上存在着以下两点不足:(1)附加存储空间开销大,(2)排序效率过分依桢于关键字的均匀分布.基于此,表文提出了一种由分“档”、整体置换和局部直接插入排序所组成的新排序算法——分“档”置换插入排序法.算法分析和实验结果都表明:该排序方法与待排序数据分布无关,其时间复杂度为O(n),而附加存储空间开销少于0.5n,同时排序速度明显优于QuickSort、HeapSort、按字节桶分配链接排序、ProportionSplitSort等算法.  相似文献   
73.
一种基于网络业务流的流量监测分析算法   总被引:6,自引:0,他引:6  
基于业务流的统计信息直接反映用户行为,最繁忙业务流获取与分析,对于网络流量分析和故障定位有指导作用。文章通过分析数据帧到来对哈希表的影响,借助一个记录表,对哈希表中的业务流进行排序,大大减少排序中的比较次数,提高监控系统处理性能.  相似文献   
74.
基于AHP的威胁评估与排序模型研究   总被引:7,自引:0,他引:7  
层次分析法(AnalyticHierarchyProcess,简称AHP)把一个复杂问题表示为有序的递阶层次结构,通过定性判断和定量计算,将经验判断给予量化,对决策方案进行排序,是一种定性分析与定量分析相结合的决策分析方法,适用于多准则决策问题。通过仿真实验用AHP根据威胁程度的大小对敌空袭目标进行排序,介绍了威胁评估和排序的求解过程,以此提供敌空袭目标对我保卫目标或区域所构成的威胁等级。该方法有效地解决了对敌空中目标威胁评估与排序问题。  相似文献   
75.
This paper is concerned with an external sorting algorithm with no additional disk space. The proposed algorithm is a hybrid one that uses Quicksort and special merging process in two distinct phases. The algorithm excels in sorting a huge file, which is many times larger than the available memory of the computer. This algorithm creates no extra backup file for manipulating huge records. For this, the algorithm saves huge disk space, which is needed to hold the large file. Also our algorithm switches to special merging process after the first phase that uses Quicksort. This reduces the time complexity and makes the algorithm faster.  相似文献   
76.
并行多边形绘制技术综述   总被引:12,自引:4,他引:12  
多边形绘制是应用最为广泛的计算机图形绘制方法.并行技术在提高多边形绘制系统的性能方面起着重要的作用.并行多边形绘制技术的基础是算法内在的可并行性,按并行流水线的组织方式可分为全图像深度合成、前分布拼接合成和中分布拼接合成三种,负载平衡和图像合成是影响多边形绘制系统性能的关键问题.并行多边形绘制系统的实现方式包括专用图形硬件实现、并行机实现和集群机实现.结合作者的工作,对并行多边形绘制技术进行了探讨.  相似文献   
77.
基于散列和归并技术的有效并行排序方法   总被引:1,自引:1,他引:1       下载免费PDF全文
本文提出一个在共享存储多处理机系统上实现的快速、有效的并行排序算法:将长度为n的待排序数据划分成p个长度为n/p的子序列,引入散列技术并行地对这p个子序列的数据进行二次散列排序,这一阶段所需的平均时间为O(n/p);最后并行地将p个有序子序列归并成一个长度为n的有序序列,归并阶段所需的时间为O(n-n/
/p)。整个排序算法的并行执行代价为O(np)。本排序方法可以拓以网络并行机群环境。  相似文献   
78.
An signal noise ratio (SNR) adaptive sorting algorithm using the time-frequency (TF) sparsity of frequency-hopping (FH) signal is proposed in this paper.Firstly,the Gabor transformation is used as TF transformation in the system and a sorting model is established under undetermined condition;then the SNR adaptive pivot threshold setting method is used to find the TF single source.The mixed matrix is estimated according to the TF matrix of single source.Lastly,signal sorting is realized through improved subspace projection combined with relative power deviation of source.Theoretical analysis and simulation results show that this algorithm has good effectiveness and performance.  相似文献   
79.
80.
The networks-on-chip (NoC) communication has an increasingly larger impact on the system power consumption and performance. Emerging technologies, like surface wave, are believed to have lower transmission latency and power consumption over the conventional wireless NoC. Therefore, this paper studies how to optimize the network performance and power consumption by giving the packet-switching fabric and traffic pattern of each application. Compared with the conventional method of wire-linked, which adds wireless transceivers by using the genetic algorithm (GA), the proposed maximal declining sorting algorithm (MDSA) can effectively reduce time consumption by as much as 20.4% to 35.6%. We also evaluate the power consumption and configuration time to prove the effective of the proposed algorithm.  相似文献   
设为首页 | 免责声明 | 关于勤云 | 加入收藏

Copyright©北京勤云科技发展有限公司    京ICP备09084417号-23

京公网安备 11010802026262号