C/C++
IpursueI
这个作者很懒,什么都没留下…
展开
-
Error LNK2019:Unresolved External Symbol *** Referenced In
当头文件中声明了一个函数,但是在相应的源文件中却没有对该函数进行定义,则会出现为“解决的外部符号”(unresolved external symbol )错误。另外,当一个函数调用了外部的一个库文件中的函数,但是在当前project的properties中并没有将所依赖的(dependent)库文件包含进来时,也会出现这种错误。 综上,当一个solution在linking时找转载 2013-03-27 10:26:48 · 837 阅读 · 0 评论 -
九度oj-1019:简单计算器
#include #include #include using namespace std; stack op; stack nu; char str[220]; int mat[][5] = //定义优先级关系 { 1,0,0,0,0, 1,0,0,0,0, 1,0,0,0,0, 1,1,1,0,0, 1,1,1,0,0 }; void getOp(int &re原创 2014-03-12 14:54:13 · 664 阅读 · 0 评论 -
九度oj-1341:艾薇儿的演唱会
#include #include int map[101][101]; int mark[101]; int dis[101]; int main() { int n,m,a,b,i,j,t,ta,tb,min,idx; while(scanf("%d", &n) != EOF) { scanf("%d", &m); scanf("%d%d", &a, &b); for原创 2014-03-13 10:22:37 · 573 阅读 · 0 评论 -
九度oj-1365:贝多芬第九交响曲
#include #include #include using namespace std; typedef struct step { int x; int y; int cost; }step; int mark[101][101]; int next[][2] = { -2,1, -1,2, 1,2, 2,1, -2,-1, -1,-2, 1,-2, 2,-1原创 2014-03-13 12:48:11 · 949 阅读 · 0 评论 -
部分和问题
从给定整数a1,a2,a3...ana_1, a_2,a_3...a_n,判断是否可以从中选出若干数,使他们的和恰好为k。#include <cstdio> #include <cstdlib>using namespace std;const int Maxn = 21; int a[Maxn]; int n,k;bool dfs(int k, int i){ if(i==n){原创 2016-04-07 13:30:35 · 425 阅读 · 0 评论 -
hihoCoder:403 Forbidden
403 Forbidden这道题写起来真是一把辛酸泪啊。各种问题。。。 下面贴出修改后的代码#include <iostream> #include <cstdlib> #include <cstdio> using namespace std;int N,M; char per[20]; char ipf[100];class TrieNode { public: TrieNode(){原创 2016-04-12 15:12:01 · 641 阅读 · 0 评论 -
c++ int double string互转
int,float,double 与 string 互转sstream istringstream string d = "44.567"; float f; istringstream in(d); in>>f; cout<<f<<endl; ostringstream float d = 123.668; ostringstream out原创 2016-03-23 12:14:17 · 872 阅读 · 0 评论 -
LeetCode: Implement Trie (Prefix Tree)
Implement Trie (Prefix Tree)#include <iostream> using namespace std;class TrieNode { public: // Initialize your data structure here. TrieNode() { for(int i=0; i<26; i++){ ne原创 2016-04-11 12:27:35 · 461 阅读 · 0 评论