代码搜索:Longest
找到约 820 项符合「Longest」的源代码
代码结果 820
www.eeworm.com/read/197407/7997769
cpp longest.cpp
#include
#include "awd1.h"
void main(void)
{
AdjacencyWDigraph G(0);
int L[101],
kay[101];
// try three graphs
for (int j = 1; j
www.eeworm.com/read/197407/7997800
out longest.out
Enter the number of vertices in the digraph
Enter the number of edges in the digraph
Enter value to use for no edge
Enter edge 1
Enter edge 2
Enter edge 3
Enter edge 4
Enter edge 5
Enter edge
www.eeworm.com/read/197407/7997909
dat longest.dat
9
8
0
1 2 3
2 5 1
1 4 4
5 6 3
6 7 2
6 8 6
8 9 7
4 6 1
9
14
0
1 4 2
1 5 1
1 7 9
2 4 8
2 3 3
2 9 4
3 8 5
4 5 9
4 7 2
5 6 7
5 7 4
5 8 3
5 9 8
6 7 9
14
11
0
1 4 2
4 5 12
www.eeworm.com/read/313025/13598223
dsw longest.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/313025/13598224
cpp longest.cpp
//最长同号连续段
#include "iostream.h"
#include "stdio.h"
#define N 1001
int ls(int start, int n, int a[]);
int main()
{ int k,n,i,j,len,a[N];
cin>>k;
for (i=1; i>n;
www.eeworm.com/read/313025/13598225
plg longest.plg
Build Log
--------------------Configuration: longest - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\why\L
www.eeworm.com/read/313025/13598226
ncb longest.ncb
www.eeworm.com/read/313025/13598227
opt longest.opt
www.eeworm.com/read/313025/13598228
dsp longest.dsp
# Microsoft Developer Studio Project File - Name="longest" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) C
www.eeworm.com/read/151458/5683076
java longest.java
package com.ideas.util;
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
import java.nio.charset.*;
import java.util.*;
import java.util.regex.*;
public class Longest {
p