代码搜索:doubly
找到约 646 项符合「doubly」的源代码
代码结果 646
www.eeworm.com/read/483958/6588271
png linkedlist.doubly.png
www.eeworm.com/read/8653/149709
png linkedlist.doubly.png
www.eeworm.com/read/35001/1050691
png linkedlist.doubly.png
www.eeworm.com/read/314681/13561811
m fdoubly2.m
function [doubly_d]=fdoubly2(d)
%
%[doubly_d]=fdoubly2(d)
%
%This function takes a non-negative, symmetric weight matrix and makes it doubly stochastic
%(both rows and columns sum to 1).
%
%INP
www.eeworm.com/read/283325/9029620
lib lstlib.lib
lstLib {doubly linked list subroutine library } lstLib {lstLib} {VxWorks API Reference} {OS Libraries} {} {}
www.eeworm.com/read/380622/9140924
pas linkedlist.pas
unit LinkedList;
interface
// Doubly-linked list. Derive a custom class from TNode
// and set the link class to that class. TLinkedList handles
// the list and your class handles the data.
//
www.eeworm.com/read/380622/9141123
pas cltnlist.pas
unit CltnList;
(*
Implement the IList and IStack collections using doubly-linked lists.
The TLinkedList class keeps track of the head and tail nodes and a
count of the number of nodes in
www.eeworm.com/read/360848/10075287
java dllnode.java
//**************************** DLLNode.java *******************************
// node of generic doubly linked list class
public class DLLNode {
public T info;
public