E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
exercises
POSIX Threads Programming
Tutorials |
Exercises
| Abstracts | LC Workshops | Comments |
·
2015-11-08 10:09
programming
Algorithms 4th - 1.1 Basic Programming Model -
EXERCISES
欢迎交流 1.1.1 a. 7 b. 200.0000002 c. true 1.1.2 a. 1.618 b. 10.0 c. true d. 33 1.1.3 1 public class MainApp { 2 public static void main(String[] args) { 3 4
·
2015-11-07 15:43
programming
URAL1119——DP——Metro
So, since a sedentary life requires active
exercises
of
·
2015-11-07 10:47
metro
Task 实现多线程的模板
using System.Collections.Generic; using System.Threading.Tasks; namespace
Exercises
·
2015-11-06 08:50
task
C++
Exercises
(十四)
// ============================================================================= // Desc: 坐标变换 // ============================================================================= #include
·
2015-11-02 10:34
C++
笨方法学python, Lesson 38, 39
Exercises
38代码ten_things = "Apples Oranges Crows Telephone Light Sugar" print "Wait there are not 10
好好先生_1028
·
2015-11-01 17:00
Deep learning:四(logistic regression练习)
course=DeepLearning&doc=
exercises
/ex4/ex4.html。这里给出的训练样本的特征为80个学生的两门功课的分数,样本值为
·
2015-11-01 10:16
log
Deep learning:三(Multivariance Linear Regression练习)
course=DeepLearning&doc=
exercises
/ex3/ex3.html.其实在上一篇博文Deep learning:二(linear r
·
2015-11-01 10:15
var
Deep learning:二(linear regression练习)
course=DeepLearning&doc=
exercises
/ex2/ex2.html。本题给出的是50个数据样本点,其中x为这50个小朋友到的年龄
·
2015-11-01 10:14
SSI
算法导论
Exercises
9.3-6
Problem Description: The kth quantiles of an n-element set are the k - 1 order statistics that divide the sorted set intok equal-sized sets (to within 1). Give an O(n lg k)-time algorithm to list the
·
2015-11-01 08:56
算法导论
算法导论
Exercises
9.3-9
Problem Description: Professor Olay is consulting for an oil company, which is planning a large pipeline running east to west through an oil field of n wells. From each well, a spur pipeline is to
·
2015-11-01 08:55
算法导论
算法导论
Exercises
9.3-7
Problem Description: Describe an O(n)-time algorithm that, given a set of S of n distinct numbers and a positive integerd k ≤ n, determines the k numbers in S that are closest to the median of S.
·
2015-11-01 08:53
算法导论
算法导论
Exercises
9.3-8
Problem Description: Let X[1...n] and Y[1...n] be two arrays, each containing n numbers already in sorted order. Give an O(lgn)-time algorithm to find the median of all 2n elements in array X and Y.
·
2015-11-01 08:52
算法导论
[
Exercises
]23 Concurrency
ex1ex2(空)ex3(空)ex4(空)ex5(空)ex6(空)ex7(空)ex8(空)ex9(空)ex10(空)ex11(空)ex12(空)ex13(空)ex14(空)ex15(空)ex16(空)ex17(空)ex18(空)ex19(空)ex20(空)ex21(空)ex22(空)ex23(空)ex24(空)ex25(空)ex26(空)ex27(空)ex28(空)ex29(空)ex30(空)ex
taoxiuxia
·
2015-10-31 15:00
并发
C++
Exercises
(十七)--图的简单实现
const int MAXSIZE = 50 ; // 顶点最大数目 #include < vector > using namespace std; template < typename T > class CGraph
·
2015-10-31 08:06
C++
C++
Exercises
(十四)--解线性方程组
帮一个朋友做的作业题,现在真是什么专业都要学编程了呀。。 // 向量类 /**/ /* **author:phinecos **date:7/17/2008 */ class CVector { public: CV
·
2015-10-31 08:05
C++
C++
Exercises
(十六)--二叉树的简单实现
#include " stdafx.h " #include < iostream > #include < stack > #include " BinSTree.h " #include < queue > using
·
2015-10-31 08:05
C++
C++
Exercises
(十五)--排序算法的简单实现
struct Node {//队列结点 int data; struct Node* pNext; } ; class CQueue {//队列类(带头结点) public: &nb
·
2015-10-31 08:04
排序算法
C++
Exercises
(十二)
钱能《C++程序设计教材》P14 日期数据存在在文件abc.txt中,格式如下面所示,若年,月,日加起来等于15,则收集,然后按日期从小到大的顺序打印出来 Sample Input: 03 - 11 - 12 03 - 08 - 12 04 - 08 - 11 02 - 07 - 06 Sample Out
·
2015-10-31 08:58
C++
C++
Exercises
(十三)
P61,练习2解答 1 , #include < iostream > using namespace std; // 筛法求素数 void FilterPrime( int n) { bool* isPrimes =
·
2015-10-31 08:58
C++
C++
Exercises
(十一)
1, #include < d3d9.h > #pragma warning( disable : 4996 ) // disable deprecated warning #include < strsafe.h > #
·
2015-10-31 08:57
C++
C++
Exercises
(九)
<<C++ Primer>>第三版P905页的这个程序有很多问题想不明白: #include < iostream > #include < fstream > using namespace std; int main() { &
·
2015-10-31 08:56
C++
C++
Exercises
(十)
1.1 找出第K大的数 方法1: #include < iostream > #include < vector > #include < algorithm > #include < iterator > using namespace std; int
·
2015-10-31 08:56
C++
C++
Exercises
(八)
1,创建进程 #include < windows.h > #include < stdio.h > int main( VOID ) { STARTUPINFO si; PROCESS_INFOR
·
2015-10-31 08:55
C++
C++
Exercises
(六)
《数据结构算法与应用--C++语言描述》第一章习题解答 Code 1.1 #include <iostream> using namespace std; const int MAX_TRY = 3; template <class T> bool Input(
·
2015-10-31 08:53
C++
C++
Exercises
(七)
#include < iostream > #include < string > #include < cstdlib > #include < ctime > using namespace std; template < typename&n
·
2015-10-31 08:53
C++
Note from head first
The more you understand, the less you have to memorize. 2 Do the
exercises
.
·
2015-10-30 14:01
first
算法导论课后习题解析 第一章
如有错误之处尽管指出,希望通过这个过程能与大家共同进步 我看的版本是英文第三版 (Introduction to Algorithms, Third Edition),所有的题目分为每一节后的练习(
Exercises
·
2015-10-30 14:42
算法导论
C++
Exercises
(八)
全排列问题: #include " stdafx.h " #include < math.h > #include < stdio.h > #include < iostream > using namespace std; void
·
2015-10-30 13:33
C++
C++
Exercises
(七)
Dll的示例代码 namespace MathFuncs { class MyMathFuncs { public : &nb
·
2015-10-30 13:33
C++
C++
Exercises
(十六)---Ethernet帧包结构解析
图1是一个假想的帧包结构, 图2是解包后的结果。 /////////////////////////// // /// 帧信息类 /////////////////////////// // class CFrame { public : CFrame( void ); &nb
·
2015-10-30 12:57
C++
C++
Exercises
(二)
1 , #include < QApplication > #include < Qlabel > int main( int argc, char * argv[]) { QApplication app(argc,argv); //&nbs
·
2015-10-30 12:53
C++
Deep learning:四(logistic regression练习)
course=DeepLearning&doc=
exercises
/ex4/ex4.html。这里给出的训练样本的特征为80个学生的两门功课的分数,样本值为对应的同学是否允许被上大学,如果是允许
东方神剑
·
2015-10-29 16:00
牛顿法
逻辑回归
算法导论(第三版)
Exercises
2.1(插入排序、线性查找、N位大数相加)
关于练习程序的说明参见置顶的那篇。 2.1-1: 31 41 59 26 41 58 31 41 59 26 41 58 31 41 59 26 41 58 26 31 41 59 41 58 26 31 41 41 59 58 26 31 41 41 58 59 2.1-2: #include <stdio.h> void inverseInsertS
·
2015-10-28 07:47
插入排序
Getting Started with Java
在这里我不打算一一总结书中的内容,书中每章节后面的
exercises
都很好,非常有总结性,而且在这些习题后面还有精华的Summary,所以,我就列举下每章
exercises
的内容(含参考答案)以及个人根据
·
2015-10-27 15:59
start
[置顶] 刘汝佳《训练指南》动态规划::Beginner (25题)解题报告汇总
入门习题 (
Exercises
·
2015-10-27 13:36
inner
算法导论(第三版)
Exercises
2.3(归并排序、二分查找、计算集合中是否有和为X的2个元素)
2.3-1: 3 9 26 38 41 49 52 59 3 26 41 52 9 38 49 57 3 41 52 26 38 57 9 49 3 41 52 26 38 57&n
·
2015-10-27 12:02
二分查找
笨方法学python,Lesson18,19,20,21
Exercises
18代码# this one is like your scripts with argv def print_two(*args): arg1, arg2 = args
好好先生_1028
·
2015-10-26 15:00
C++
Exercises
(六)
class String { public : String(); String( const String & another); // 拷贝构造函数 explicit
·
2015-10-23 09:33
C++
C++
Exercises
(五)
问题:在窗体上画一个圆,并且可以用鼠标拖动它在窗体上运动到任何位置 分析: 一个圆是由它的外接矩阵决定的,而外接矩阵可以由矩阵的左上角点和矩阵的高度和宽度表示,这里显然要求外接矩阵的大小是不变的,变化的仅仅是外接矩阵的左上角点,所以要处理的就是矩阵左上角点的变化。 为此设置类的成员变量如下: &
·
2015-10-23 09:32
C++
Chapter 3 Discovering Classes and Object
Chatper 3 Discovering Classes and Object
Exercises
: 1.What is a class?
·
2015-10-23 08:31
classes
Learning Java language Fundamentals
Chapter 2 Learning Java language fundamentals
exercises
: 1.What is Unicode?
·
2015-10-23 08:30
language
Python自然语言处理学习笔记(68):7.9 练习
7.9
Exercises
练习 ☼ The IOB format categorizes tagged tokens as I, O and B.
·
2015-10-23 08:20
python
C++
Exercises
(十九)
1.写一个函数,将字符串中的\t 都转换成4 个空格。 #include < iostream > #include < string > using namespace std; string replaceTab( const string & strS
·
2015-10-21 12:16
C++
C++
Exercises
(十八)
下了份《 46家公司笔试题 》做做,好久没接触这些基本知识了,熟悉下 1.完成下列程序 * *.*. *..*..*.. *...*...*...*... *.
·
2015-10-21 12:15
C++
C++
Exercises
(十七)---网际校验和算法
在《基于ARP协议获取局域网内主机MAC地址》中使用了WinpCap来发送ARP请求,查询局域网内主机MAC地址,这篇来试试直接用Windows API函数来实现,最后再来探索用于IP,TCP,UDP等众多协议的网际校验和算法。 1,查询局域网主机MAC地址 #include < WinSock2.h >
·
2015-10-21 12:15
C++
C++
Exercises
(四)
1,cout<<boolalpha<<(2>3)<<endl;输出什么? Dev c++上输出false,VC++输出0,why? 2, 我机子上的VC6.0上编译通不过,可Dev C++可以运行,why? #include < fstream > using namespace std
·
2015-10-21 12:58
C++
C++
Exercises
(三)
// finddialog.h #ifndef FINDDIALOG_H #define FINDDIALOG_H #include < QDialog > class QCheckBox; class QLabel; class QLineEdit; class QPush
·
2015-10-21 12:57
C++
C++
Exercises
(一)
一个3D向量类 // Vertex3D.h: interface for the Vertex3D class. // ///////////////////////////////////////////////////////////////////// / class Vertex3D &nbs
·
2015-10-21 12:56
C++
[Bhatia.Matrix Analysis.Solutions to
Exercises
and Problems]ExI.5.3
Let $\scrM$ be a $p$-dimensional subspace of $\scrH$ and $\scrN$ its orthogonal complement. Choosing $j$ vectors from $\scrM$ and $k-j$ vectors from $\scrN$ and forming the linear span of the antisymm
·
2015-10-21 11:32
Matrix
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他