使用这个学习软件自行学习能快速掌握数据结构内容 我们老师给我的 还不错哦。适合初学数据结构的同学,提供种数据结构,代码,参数及数据结构的逻辑图
2021-10-25 22:34:19 2.05MB 数据结构 学习
1
包含各章知识点和教学建议,就是学习完数据结构这门课程后老师让写的一个小小的总结
2021-10-17 19:04:45 31KB 数据结构
1
《算法与数据结构》学习指导与习题解析(王晓东 傅清祥 叶东毅).rar
2021-10-07 20:09:49 3.19MB 傅清祥 数据结构 王晓东 算法
1
韩顺平java项目源码 [TOC] data-structures 介绍 数据结构学习源码,学习过程中参考尚硅谷的《尚硅谷-韩顺平图解Java数据结构和算法》视频, 但视频中有些内容为了便于理解,存在一些硬编码以及一些个人觉得可以优化的点,因此该项目中源码与视频中源码有较大出入; 内容 1. 稀疏数组 com.ddf.datastructure.sparsearray.SparseArray 2. 队列 2.1 数组实现队列 com.ddf.datastructure.queue.ArrayQueueDemo 3. 链表 3.1 单向链表 com.ddf.datastructure.linkedlist.SingletonLinkedListDemo 3.2 双向链表 com.ddf.datastructure.linkedlist.LinkedListDemo 3.3 单向环形链表 com.ddf.datastructure.linkedlist.CircleSingletonLinkedListDemo 4. 栈 4.1 数组实现栈 com.ddf.datastructure.st
2021-10-02 21:07:54 31KB 系统开源
1
数据结构 学习方法 严蔚敏版 简洁明了,很适合复习用
2021-09-29 16:58:59 1.71MB 数据结构 学习方法 严蔚敏版
1
贝叶斯网络的K2结构学习 clear N = 4; dag = zeros(N,N); %C = 1; S = 2; R = 3; W = 4; % topological order C = 4; S = 2; R = 3; W = 1; % arbitrary order dag(C,[R S]) = 1; dag(R,W) = 1; dag(S,W)=1; false = 1; true = 2; ns = 2*ones(1,N); % binary nodes bnet = mk_bnet(dag, ns); bnet.CPD{C} = tabular_CPD(bnet, C, 'CPT', [0.5 0.5]); bnet.CPD{R} = tabular_CPD(bnet, R, 'CPT', [0.8 0.2 0.2 0.8]); bnet.CPD{S} = tabular_CPD(bnet, S, 'CPT', [0.5 0.9 0.5 0.1]); bnet.CPD{W} = tabular_CPD(bnet, W, 'CPT', [1 0.1 0.1 0.01 0 0.9 0.9 0.99]); [n ncases] = size(data); % set default params type = cell(1,n); params = cell(1,n); for i=1:n type{i} = 'tabular'; %params{i} = { 'prior', 1 }; params{i} = { 'prior_type', 'dirichlet', 'dirichlet_weight', 1 }; end scoring_fn = 'bayesian'; discrete = 1:n; clamped = zeros(n, ncases); max_fan_in = n; verbose = 0; dag = zeros(n,n); for i=1:n ps = []; j = order(i); u = find(clamped(j,:)==0); score = score_family(j, ps, type{j}, scoring_fn, ns, discrete, data(:,u), params{j}); if verbose, fprintf('\nnode %d, empty score %6.4f\n', j, score), end done = 0; while ~done & (length(ps) score score = best_pscore; ps = [ps best_p]; if verbose, fprintf('* adding %d to %d, score %6.4f\n', best_p, j, best_pscore),end else done = 1; end end if ~isempty(ps) % need this check for matlab 5.2 dag(ps, j) = 1; end end
2021-09-13 16:02:21 2KB 贝叶斯网络
1
吉林大学数据结构在学习通上的慕课第七章答案,对于各个题都有详细解答过程,以及标准的adl语言算法,希望帮助广大学子更好的学习数据结构。
2021-09-12 18:58:07 331KB 吉林大学 数据结构 学习通慕课答案
1
吉林大学数据结构在学习通上的慕课第四章答案,对于各个题都有详细解答过程,以及标准的adl语言算法,希望帮助广大学子更好的学习数据结构。
2021-09-12 18:53:00 873KB 吉林大学 数据结构 学习通慕课答案
1
吉林大学数据结构在学习通上的慕课第三章答案,对于各个题都有详细解答过程,以及标准的adl语言算法,希望帮助广大学子更好的学习数据结构。
2021-09-12 18:52:31 469KB 吉林大学 数据结构 学习通慕课答案
1
一点学习资料
2021-09-09 18:05:14 1.18MB 测试题 数据结构
1