码迷,mamicode.com
首页 >  
搜索关键字:tasks and back stack    ( 26134个结果
Alhorithm Part I:QUEUES,STACKS
1.stack的LinkList实现。 2.stack的数组实现 3.stack的可变数组实现 4.Queue的LinkList实现 5.Queue的可变数组实现思路...
分类:其他好文   时间:2014-09-21 23:24:11    阅读次数:313
C#值类型和引用类型用C语言理解
我刚用C#一个来月,可能理解得不对,还请大家指教。 读懂文章你需要对C语言的指针有所理解。 需要注意区别:对C\C++来说,任何类型都可以当成C#的“引用类型”,因为有指针。 【在内存上】 void foo() { int aaa = 0; //值类型,aaa在Stack上分配(SUB ESP,XX) int* paaa = new int[123]; //引用类型,paaa在Heap上分配,HeapAlloc(GetProcessHeap()...) foo2(&aaa); //【引用】值类型a...
分类:编程语言   时间:2014-09-21 21:50:51    阅读次数:229
LINQ 表达式树
usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingSystem.Linq.Expressions; namespaceConsoleApplication3 { classProgram { staticvoidMain(string[]args) { //重要的类*****************************..
分类:其他好文   时间:2014-09-21 21:24:41    阅读次数:266
C#对文件进行MD5值检测
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:其他好文   时间:2014-09-21 15:17:10    阅读次数:196
C#对WIindows服务进行操作
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:其他好文   时间:2014-09-21 14:42:10    阅读次数:274
C#设置某程序开机自启动[修改注册表方式]
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using Microsoft...
分类:其他好文   时间:2014-09-21 13:54:20    阅读次数:252
hdu 4604 Deque
最长上升子序列+最长递减子序列-反复的方法不严谨,貌似有人已经找到反例了,至于为什么那种方法能ac应该是測试数据弱吧下面才是最标准的做法//#pragma comment(linker, "/STACK:102400000,102400000")#include#include#include#in...
分类:其他好文   时间:2014-09-21 13:40:00    阅读次数:316
fatal: Could not jump back into original cwd: No such file or directory
今天在配置git自动在提交时从bare库中检出到应用目录时,竟然出现这个错误,折腾了好久,搞不明白怎么回事,经过测试,发现是git本身的问题, 就是没摸着是什么引起的; 通过google.终于发现说是git版本目录与work目录不允许相同的前缀,也就是work-tree目录=qidizi 而git-dir=qidizi.git 就是work-tree目录完全就是git-dir目录前缀时,就会...
分类:其他好文   时间:2014-09-21 04:13:30    阅读次数:372
用栈实现进制转换
“除基取余 + 顺序栈” 实现十进制数转换成其他进制数,代码如下:#include #define MAX_L 100//定义栈typedef struct { int data[MAX_L]; int top; }Stack;//进制转换//origin是待转数,right是要转的目的数的...
分类:其他好文   时间:2014-09-21 01:23:39    阅读次数:201
BP神经网络算法学习
BP(Back Propagation)网络是1986年由Rumelhart和McCelland为首的科学家小组提出,是一种按误差逆传播算法训练的多层前馈网络,是眼下应用最广泛的神经网络模型之中的一个。BP网络能学习和存贮大量的输入-输出模式映射关系,而无需事前揭示描写叙述这样的映射关系的数学方程。...
分类:其他好文   时间:2014-09-20 14:50:58    阅读次数:239
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!