代码搜索:Algorithm
找到约 10,000 项符合「Algorithm」的源代码
代码结果 10,000
www.eeworm.com/read/426147/10281396
cpp main.cpp
#include
#include
#include
#include
using namespace std;
int main(void){
deque d;
d.push_back(12);
d.push_back(13);
//
front_insert_iter
www.eeworm.com/read/162188/10327927
ext maxlik.ext
/*
** maxlik.ext - external declarations for globals used in MAXLIK.
**
**
** (C) Copyright 1988-1995 Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SO
www.eeworm.com/read/161357/10422821
m test_overload_menu.m
%****************************************************************
% 内容概述:TURBO译码计算速对测试(菜单式)
% 设定计算时长,检测单位时间内的译码bit数
% 该程序用于定性分析各种译码算法在不同条件下的计算速度
% 其计算比特率是对算法复杂性的直观反映。
%
www.eeworm.com/read/351253/10669588
m dbpa mspc.m
%%
% DBPA - Distance Based Power Alocation Algorithm%%%%%%%%%%%%%%%%%%%%%%
%
% in this progarm mobiles are uniformally distributed within%%%%%%%%%%%
% the cell to allow varing power for the D
www.eeworm.com/read/351253/10669598
asv dbpa mspc.asv
%% DBPA - Distance Based Power Alocation Algorithm%%%%%%%%%%%%%%%%%%%%%%
% in this progarm mobiles are uniformally distributed within%%%%%%%%%%%
% the cell to allow varing power for the Downlin
www.eeworm.com/read/270963/11017605
cpp 14-01-01-1.cpp
#include
#include
#include
#include
using namespace std;
int main()
{
list L;
L.push_front(3);
front_insert_iterator ii(L);
*ii++
www.eeworm.com/read/270963/11017616
cpp 14-01-02-1.cpp
#include
#include
#include
#include
using namespace std;
int main()
{
list L;
L.push_front(3);
back_insert_iterator ii(L);
*ii++ = 0;
www.eeworm.com/read/270963/11017631
cpp 11-03-02-4.cpp
#include
#include
#include
using namespace std;
int main()
{
int A[] = { 2, 0, 4, 6, 0, 3, 1, -7 };
const int N = sizeof(A) / sizeof(int);
cout
www.eeworm.com/read/270963/11017686
cpp 15-07-06.cpp
#include
#include
#include
#include
#include
using namespace std;
int main()
{
vector v;
v.push_back(vector(2));
v.pus
www.eeworm.com/read/270963/11017808
cpp 12-08-01.cpp
#include
#include
#include
#include
using namespace std;
int main()
{
int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
const int N = sizeof(A)/sizeof(int