转载自:http://blog.csdn.net/jeiwt/article/details/5460966 qsort 用法很简单 qsort 的函数原型是void __cdecl qsort ( void…
分类:算法
算法还是算法
各种算法,只要换新工作就少不了。 冒泡排序,插入排序,选择排序…….. 闲来无事在Github上开了repository – Algorithms in C#,地址:https://github.com/Al…
longest-palindromic-substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum lengt…
无处不在的斐波那契数列
mark一下斐波那契: https://www.zhihu.com/question/28062458 并顺便学习了下快速幂的实现原理,感觉大学时间好多知识点还给老师了,太浪费青春了 快速幂: https://blog.…
Unique Paths
Unique Paths A.题意 A robot is located at the top-left corner of a m x n grid (marked ‘Start’ in the diagram bel…
算法题--上台阶
上台阶 有一楼梯共n级,刚开始时你在第一级,若每次只能跨上一级或者二级,要走上n级,共有多少走法?注:规定从一级到一级有0种走法。给定一个正整数int n,请返回一个数,代表上楼的方式数。保证n小于等于100。为了防止溢…
排序算法之快速排序
快速排序是C.R.A.Hoare于1962年提出的一种划分交换排序。它采用了一种分治的策略,通常称其为分治法(Divide-and-ConquerMethod)。快速排序由于排序效率在同为O(N*logN)的几种排序方法…
55. Jump Game
问题描述: Given an array of non-negative integers, you are initially positioned at the first index of the array. E…
几种排序算法的最简单实现方式
//冒泡排序 /*思想:两两比较相邻记录的关键码,如果反序则交换, 直到没有反序的记录为止*/ void BubbleSort(int *a, int n) { int i,j; int x; for(i=1;i<…
Python 字符串格式化 (%操作符)
自适应辛普森公式 辛普森公式是数值方法中常用的计算函数定积分的近似方法。 计算定积分的方法 辛普森公式的推导 其他N-C公式 自适应方法 计算定积分的方法 求原函数 直接查表 这个求不出来怎么办 ∫x0t3et−1dt …
stooage排序
对于这个排序的算法。我真的解释不清楚,看着伪代码将代码敲出来了。并且能很好的实现排序过程,仔细想想自己好像明白是怎么回事,但是不知道怎么来表达出来,我还是先把我写的代码贴出来,争取大家一起理解理解,我也在看看这个代码。。…
【剑指Offer】第一个只出现一次的字符位置
题目描述 在一个字符串(1<=字符串长度<=10000,全部由大写字母组成)中找到第一个只出现一次的字符,并返回它的位置 public class Solution { public int FirstNot…