代码搜索:nc
找到约 10,000 项符合「nc」的源代码
代码结果 10,000
www.eeworm.com/read/405890/11455291
nc as.nc
www.eeworm.com/read/183326/9169754
def form.def
LIBRARY form5 INITINSTANCE TERMINSTANCE
DESCRIPTION "NCurses-5-1-20000704, module form"
CODE LOADONCALL
DATA LOADONCALL NONSHARED MULTIPLE
EXPORTS
"TYPE_ALNUM" @2 NONAME
"TYPE_ALPHA" @1 NONAME
www.eeworm.com/read/183326/9169800
def ncurses.def
LIBRARY ncurses5 INITINSTANCE TERMINSTANCE
DESCRIPTION "NCurses-5-1-20000704, module ncurses"
CODE LOADONCALL
DATA LOADONCALL NONSHARED MULTIPLE
EXPORTS
"BC" @662 NONAME
"COLORS" @503 NONAME
www.eeworm.com/read/357508/10208044
def form.def
LIBRARY form5 INITINSTANCE TERMINSTANCE
DESCRIPTION "NCurses-5-1-20000704, module form"
CODE LOADONCALL
DATA LOADONCALL NONSHARED MULTIPLE
EXPORTS
"TYPE_ALNUM" @2 NONAME
"TYPE_ALPHA" @1 NONAME
www.eeworm.com/read/357508/10208062
def ncurses.def
LIBRARY ncurses5 INITINSTANCE TERMINSTANCE
DESCRIPTION "NCurses-5-1-20000704, module ncurses"
CODE LOADONCALL
DATA LOADONCALL NONSHARED MULTIPLE
EXPORTS
"BC" @662 NONAME
"COLORS" @503 NONAME
www.eeworm.com/read/125782/14463738
def form.def
LIBRARY form5 INITINSTANCE TERMINSTANCE
DESCRIPTION "NCurses-5-1-20000704, module form"
CODE LOADONCALL
DATA LOADONCALL NONSHARED MULTIPLE
EXPORTS
"TYPE_ALNUM" @2 NONAME
"TYPE_ALPHA" @1 NONAME
www.eeworm.com/read/125782/14463771
def ncurses.def
LIBRARY ncurses5 INITINSTANCE TERMINSTANCE
DESCRIPTION "NCurses-5-1-20000704, module ncurses"
CODE LOADONCALL
DATA LOADONCALL NONSHARED MULTIPLE
EXPORTS
"BC" @662 NONAME
"COLORS" @503 NONAME
www.eeworm.com/read/427233/8959579
m mf.m
%MF.m
%This program solves the maximum flow problem by using Dinic algorithm.
n=input('Enter the vertices number of the graph:n= ')
C=input('Enter the capacity adjacent matrix of the graph:[C(1,
www.eeworm.com/read/427233/8959591
m f_mf.m
function y=f_mf(n,C,V0); %n:verties number; C:capacity matrix(C(i,j)=0); V0:given flow value
f=zeros(n); %feasible flow
Vf=sum(f(1,:)); %feasible flow value
while Vf