CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - backtracking knapsack
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
GUI Develop
Windows Kernel
WinSock-NDIS
Driver Develop
ADO-ODBC
GDI-Bitmap
CSharp
.net
Multimedia Develop
Communication
Shell api
ActiveX/DCOM/ATL
IME Develop
ISAPI-IE
Hook api
Screen saver
DirextX
Process-Thread
Console
File Operate
Printing program
Multi Monitor
DNA
Other
Search - backtracking knapsack - List
[
Other
]
0-1
DL : 0
掌握回溯法的应用 用回溯法求解0-1背包问题。 -Backtracking to master the application of retrospective method with 0-1 knapsack problem.
Date
: 2026-01-02
Size
: 876kb
User
:
井
[
Other
]
01bag
DL : 0
用蛮力法,回溯法,分支限界法求解背包问题-With the brute force method, backtracking, branch and bound method for solving knapsack problem
Date
: 2026-01-02
Size
: 1mb
User
:
hehuiling
[
Other
]
a
DL : 0
为了方便大家更好的学习算法分析,我上传了一个用回溯法解决的01背包问题-In order to facilitate a better learning algorithm all analysis, I uploaded a backtracking method to deal with the 01 knapsack problem
Date
: 2026-01-02
Size
: 1kb
User
:
feifei981110
[
Other
]
01knapsackproblem
DL : 0
回溯法解决01背包问题,是在标准C++上运行的代码,故在VC++上也能运行良好!-Backtracking to solve 01 knapsack problem is in the standard C++ code to run on, so the VC++ is also able to run well!
Date
: 2026-01-02
Size
: 1kb
User
:
daisy
[
Other
]
BackTrack_01backpack
DL : 0
0-1背包问题是一个经典的算法问题,有多种解法,这里用回溯法求解。-0-1 knapsack problem is a classical algorithm for the problem, there are several solution here solved by backtracking.
Date
: 2026-01-02
Size
: 529kb
User
:
储大为
[
Other
]
0_1bag
DL : 0
此程序是用回溯法解决01背包问题,可以运行成功,欢迎下载-This program is backtracking to solve 01 knapsack problem, you can run successfully, please download
Date
: 2026-01-02
Size
: 1kb
User
:
小杰
[
Other
]
0_1beibao
DL : 0
分别用回溯法和动态规划解决0-1背包问题,输出装入背包的顺序-Backtracking and dynamic programming to solve the 0-1 knapsack problem, the order in which the output is loaded backpack
Date
: 2026-01-02
Size
: 1kb
User
:
赵瑾
[
Other
]
Knap
DL : 0
采用回溯法解决01背包问题,数据输入为当前目录下的data.txt文件;-Backtracking to solve knapsack problem 01, data input data.txt file in the current directory
Date
: 2026-01-02
Size
: 1002kb
User
:
张帆
[
Other
]
01backpack
DL : 0
用回溯法解决01背包问题,C++实现,通过读取data.txt文件得到背包容量和物品信息,下载文件后直接导入运行即可。-Backtracking to solve knapsack problem 01, C++ implementation, read the data.txt file the backpack capacity and items of information, to download the file directly import can be run.
Date
: 2026-01-02
Size
: 1.84mb
User
:
fengjing
[
Other
]
daima
DL : 1
动态规划,贪心算法和回溯解决0-1背包问题-Dynamic programming, greedy algorithms and backtracking to solve 0-1 knapsack problem
Date
: 2026-01-02
Size
: 3kb
User
:
庞浩
[
Other
]
0-1
DL : 0
我自己用C写的一个用分支界限法实现0-1背包问题,比较简便实用,而且易懂,比回溯法有明显的优势-I have written in C, a branch and bound method 0-1 knapsack problem is relatively simple and practical, and easy to understand, there are obvious advantages than backtracking
Date
: 2026-01-02
Size
: 5kb
User
:
李辉
[
Other
]
01beibao
DL : 0
01背包问题的回溯算法与实现 已知一个容量为M的包和n件物品, 每件物品的重量为wi, 效益值为pi. 若将物品i装入包中, 背包可得到pi的效益值增量. 要求找到一种装入物品的方案, 在不超过包的总容量前提下, 使包获得最大效益值,-01 knapsack problem backtracking algorithm and implementation of
Date
: 2026-01-02
Size
: 11kb
User
:
missli
[
Other
]
code
DL : 0
使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。 使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Uses backtracking method to solve the problems of the typical algorithms: the knight tour problem, n queen problem, 0-1 knapsack problem. Recursion and divide and conquer strategy algorithm to solve the problem of few: tower of Hanoi problem and binary search technology.
Date
: 2026-01-02
Size
: 3kb
User
:
阿丁汤圆
[
Other
]
pack_Brute_force
DL : 0
用回溯法解决背包问题 用回溯法解决背包问题-Use backtracking to solve knapsack problem using backtracking to solve knapsack problem
Date
: 2026-01-02
Size
: 1kb
User
:
付鹏
[
Other
]
hs
DL : 0
背包问题是NP完全问题,本程序通过回溯法实现了一种优化的背包。-Knapsack problem is NP-complete problems, this program through backtracking realize an optimized backpack.
Date
: 2026-01-02
Size
: 455kb
User
:
dirk
[
Other
]
Knapsack
DL : 0
Knapsack with recursive and backtracking
Date
: 2026-01-02
Size
: 1kb
User
:
Petrus Gumarang
[
Other
]
knapsackproblem
DL : 0
分别用蛮力法、回溯法解决0/1背包,visual studio开发环境-Were used brute force method, backtracking to solve the 0/1 knapsack, visual studio development environment
Date
: 2026-01-02
Size
: 199kb
User
:
wen
[
Other
]
01knap
DL : 0
回溯法解决01背包问题-Backtracking to solve 01 knapsack problem
Date
: 2026-01-02
Size
: 1kb
User
:
joe wu
[
Other
]
0-1-bugs-question
DL : 0
0-1背包的几种算法的C++实现,包括分支限界、回溯法、贪心算法几种算法-Several 0-1 knapsack algorithm c++ implementation, including branch limit, backtracking algorithm and greedy algorithm
Date
: 2026-01-02
Size
: 10.77mb
User
:
Luokai
[
Other
]
01
DL : 0
01背包问题简单的回溯法实现,可供新人学习和参考使用。-01 knapsack problem to achieve a simple backtracking available new learning and reference.
Date
: 2026-01-02
Size
: 26kb
User
:
zjb
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.