java - 从网页获取 Java 或 C 程序的输入?

标签 java html c jsp servlets

我正在实现旅行商优化问题,我使用 Java 和 C 程序编写了相同的程序。该程序以矩阵作为输入并显示最优路径。

Java代码

import java.util.InputMismatchException;
import java.util.Scanner;
import java.util.Stack;

public class TSPNearestNeighbour {
    private int numberOfNodes;
    private Stack<Integer> stack;

    public TSPNearestNeighbour() {
        stack = new Stack<Integer>();
    }

    public void tsp(int adjacencyMatrix[][]) {
        numberOfNodes = adjacencyMatrix[1].length - 1;
        int[] visited = new
                int[numberOfNodes + 1];
        visited[1] = 1;
        stack.push(1);
        int element, dst = 0, i;
        int min = Integer.MAX_VALUE;
        boolean minFlag = false;
        System.out.print(1 + "\t");

        while (!stack.isEmpty()) {
            element = stack.peek();
            i = 1;
            min = Integer.MAX_VALUE;
            while (i <= numberOfNodes) {
                if
                (adjacencyMatrix[element][i] > 1 && visited[i] == 0) {


                    if (min > adjacencyMatrix[element][i]) {
                        min = adjacencyMatrix[element][i];
                        dst = i;
                        minFlag = true;
                    }
                }
                i++;
            }
            if (minFlag) {
                visited[dst] = 1;
                stack.push(dst);
                System.out.print(dst + "\t");
                minFlag = false;
                continue;
            }


            stack.pop();
        }
    }

    public static void main(String... arg) {
        int number_of_nodes;
        Scanner scanner = null;
        try {
            System.out.println("Enter the number of nodes in the graph");
            scanner = new Scanner(System.in);
            number_of_nodes = scanner.nextInt();
            int adjacency_matrix[][] = new int[number_of_nodes + 1][number_of_nodes + 1];
            System.out.println("Enter the adjacency matrix");


            for (int i = 1; i <= number_of_nodes; i++) {
                for (int j = 1; j <= number_of_nodes; j++) {
                    adjacency_matrix[i][j] = scanner.nextInt();
                }
            }
            for (int i = 1; i <= number_of_nodes; i++) {
                for (int j = 1; j <= number_of_nodes; j++) {
                    if
                    (adjacency_matrix[i][j] == 1 && adjacency_matrix[j][i] == 0) {


                        adjacency_matrix[j][i] = 1;
                    }
                }
            }
            System.out.println("the citys are visited as follows");
            TSPNearestNeighbour tspNearestNeighbour = new TSPNearestNeighbour();
            tspNearestNeighbour.tsp(adjacency_matrix);
        } catch (InputMismatchException inputMismatch) {
            System.out.println("Wrong Input format");
        }
        scanner.close();
    }
}

C代码

#include<stdio.h>
#include<conio.h>
int a[10][10],visited[10],n,cost=0;

void get()
{
    int i,j;
    printf("Enter No. of Cities: ");
    scanf("%d",&n);
    printf("\nEnter Cost Matrix\n");
    for(i=0;i < n;i++)
    {
        printf("\nEnter Elements of Row # : %d\n",i+1);
        for( j=0;j < n;j++)
            scanf("%d",&a[i][j]);
        visited[i]=0;
    }
    printf("\n\nThe cost list is:\n\n");
    for( i=0;i < n;i++)
    {
        printf("\n\n");
        for(j=0;j < n;j++)
            printf("\t%d",a[i][j]);
    }
}

void mincost(int city)
{
    int i,ncity;
    visited[city]=1;    
    printf("%d -->",city+1);
    ncity=least(city);
    if(ncity==999)
    {
        ncity=0;
        printf("%d",ncity+1);
        cost+=a[city][ncity];
        return;
    }
    mincost(ncity);
}

int least(int c)
{
    int i,nc=999;
    int min=999,kmin;
    for(i=0;i < n;i++)
    {
        if((a[c][i]!=0)&&(visited[i]==0))
            if(a[c][i] < min)
            {
                min=a[i][c]+a[c][i];
                kmin=a[c][i];
                nc=i;
            }
    }
    if(min!=999)
        cost+=kmin;
    return nc;
}

void put()
{
    printf("\n\nMinimum cost:");
    printf("%d",cost);
}

void main()
{
    clrscr();
    get();
    printf("\n\nThe Path is:\n\n");
    mincost(0);
    put();
    getch();
}

这两个程序也运行良好。但我想为它实现一个案例研究,我需要从网页上获取这些矩阵的输入。那么有什么办法可以做到吗?对于 java 或 c,两者都可以。我也知道 JSP 和 Web 编程。我只想知道如何获取这些矩阵的输入并将其发送到服务器端。

最佳答案

对于 Java,我使用了 Jsp 和 Servlet。

Index.jsp

<body>
<form action="sample" method="post">
    <h1>Travelling Salesman Problem</h1>
    <input placeholder="Number of Cities" type="text" name="cities" required="">
    <input placeholder="Matrix" type="text" name="matrix" required="">

    <button>Submit</button>
</form>
</body>

Servlet Sample.java

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.InputMismatchException;
import java.util.Scanner;
import java.util.Stack;

import static java.lang.System.out;

public class sample extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        String city = request.getParameter("cities");
        String numbers = request.getParameter("matrix");
        int[] abc=new int[100];
        String[] args = new String[2];
        args[0] = city;
        args[1] = numbers;
        abc = TSPNearestNeighbour.main(args);  //passing the two arguments to my java class
        PrintWriter out = response.getWriter();

        for (int i=0;i<=abc.length;i++) {
            out.println(abc[i]);
        }

    }
}

TSPNearestNeighbour.Java (Java Class)

import java.util.InputMismatchException;
import java.util.Stack;

public class TSPNearestNeighbour
{
    private int numberOfNodes;
    private Stack<Integer> stack;

    public TSPNearestNeighbour()
    {
        stack = new Stack<Integer>();
    }
    public int[] tsp(int[][] adjacencyMatrix)
    {
        int[] arr= new int[100];
        numberOfNodes = adjacencyMatrix[1].length - 1;
        int[] visited = new
                int[numberOfNodes + 1];
        visited[1] = 1;
        stack.push(1);
        int element, dst = 0, i;
        int min = Integer.MAX_VALUE;
        boolean minFlag = false;
        System.out.print(1 + "\t");

        while (!stack.isEmpty())
        {
            element = stack.peek();
            i = 1;
            min = Integer.MAX_VALUE;
            while (i <= numberOfNodes)
            {
                if
                        (adjacencyMatrix[element][i] > 1 && visited[i] == 0)
                {



                    if (min > adjacencyMatrix[element][i])
                    {
                        min = adjacencyMatrix[element][i];
                        dst = i;
                        minFlag = true;
                    }
                }
                i++;
            }
            if (minFlag)
            {
                visited[dst] = 1;
                stack.push(dst);

                System.out.print(dst +"\t");


                minFlag = false;
                continue;
            }


           stack.pop();
        }

        return arr;// ignore this line,it's regarding my logic
    }

    public static int[] main (String[] args) {
        if (args.length < 2) {
            System.out.println("Two arguments required <city> <numbers>");
            System.exit(-1);
        }
        int number_of_nodes;
        number_of_nodes = Integer.parseInt(args[0]);

        String[] splitText = args[1].split(" +");
        int[] mat = new int[splitText.length];
        for (int i = 0; i < splitText.length; i++) {
            mat[i] = Integer.parseInt(splitText[i]); // since we are passing the parameters to matrix,we convert every value from string type to integer

        }

        int[] abc = new int[100];
        try {
            int adjacency_matrix[][] = new int[number_of_nodes + 1][number_of_nodes + 1];
            int count = 0;
            for (int i = 1; i <= number_of_nodes; i++) {
                for (int j = 1; j <= number_of_nodes; j++) {
                    if (count == mat.length)
                        break;
                    adjacency_matrix[i][j] = mat[(i - 1) * number_of_nodes + (j - 1)];//matrix input
                    count++;
                }
            }
            for (int i = 1; i <= number_of_nodes; i++) {
                for (int j = 1; j <= number_of_nodes; j++) {
                    if (adjacency_matrix[i][j] == 1 && adjacency_matrix[j][i] == 0) {

                        adjacency_matrix[j][i] = 1;
                    }
                }
            }
            System.out.println("the citys are visited as follows");
            TSPNearestNeighbour tspNearestNeighbour = new TSPNearestNeighbour();
            abc = tspNearestNeighbour.tsp(adjacency_matrix);
        } catch (InputMismatchException inputMismatch) {
            System.out.println("Wrong Input format");
        }

        return abc;
    }


}

关于java - 从网页获取 Java 或 C 程序的输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53358330/

相关文章:

java - 将多节点 ArrayList 添加到 Firebase 实时数据库

java - 无法捕获的 ChuckNorrisException

Javascript innerhtml 在第二次函数调用未定义函数时不显示

html - 如何使 div 始终保持在背景上的单个点之上?

c - GCC 报告包含的无关错误

c - 收到奇怪的信号

c - 将指针存储在 vector 中

java - 我的应用程序卡在 mBufferIn.readLine() 上

javascript - 无法从用户那里获取图像,在 div 中显示它,缩放它并将它附加到正文

java - jta 事务管理器未回滚事务