Calculate the sum of two integers a and b, but you are […]
算法-每天一道题(28)-405. Convert a Number to Hexadecimal-进制转换
Given an integer, write an algorithm to convert it to h […]
算法-每天一道题(27)-409. Longest Palindrome-map使用
Given a string which consists of lowercase or uppercase […]
算法-每天一道题(26)-404. Sum of Left Leaves-二叉树
Find the sum of all left leaves in a given binary tree. […]
算法-每天一道题(15)-删数
有一个数组a[N]顺序存放0~N-1,要求每隔两个数删掉一个数,到末尾时循环至开头继续进行,求最后一个被删掉的 […]
算法-每天一道题(1)
题目: 有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 代码:
算法(九)-回溯法-装载问题
问题描述: 算法思想: 代码实现:
算法(八)-回溯法-N皇后问题
问题描述: 算法思想: 代码实现:
算法(七)-01背包问题分支限界法-优先队列
问题描述: 算法思想: 代码实现:
算法(六)-运动员最佳配对问题回溯法
问题描述: 算法描述: 代码: