1. 字面常量 常量即程序运行期间,固定不变的量称为常量,比如:一个礼拜七天,一年12个月等。
public class Demo{
public static void main(String[] args){
System.Out.println("hello world!");
System.Out.println(…
一、DFS与BFS
1.1深度优先搜索(DFS)
DFS不具有最短性 //排列数字问题
#include<iostream>
using namespace std;const int N 10;
int n;
int path[N];
bool st[N];void dfs(int u)
{if(u n){for(int i 0;i < n;i) printf("%d",path[i]);puts("&qu…