E D R , A S I H C RSS

Full text search for "index"

index


Search BackLinks only
Display context of search results
Case-sensitive searching
  • AseParserByJhs . . . . 67 matches
          int vertIndex[3]; // indicies for the verts that make up this triangle
          int coordIndex[3]; // indicies for the tex coords to texture this face
          int c_index = 0;
          temp [c_index++] = (char) fgetc (s);
          if (temp [c_index-1] == '"') {
          temp [c_index-1] = '\0';
          int c_index = 0;
          temp [c_index++] = (char) fgetc (s);
          if (temp [c_index-1] == '"') {
          temp [c_index-1] = '\0';
          int c_index = 0;
          tmp_name [c_index++] = (char) fgetc (s);
          if (tmp_name [c_index-1] == '"') {
          tmp_name [c_index-1] = '\0';
          int c_index = 0;
          tmp_name [c_index++] = (char) fgetc (s);
          if (tmp_name [c_index-1] == '"') {
          tmp_name [c_index-1] = '\0';
          int nBlendAssignIndex;
          int index;
  • MoreEffectiveC++/Techniques2of3 . . . . 43 matches
          const char& operator[](int index) const; // const String에 대하여
          char& operator[](int index); // non-const String에 대하여
         const char& String::operator[](int index) const
          return value->data[index];
         (이 함수는 원래의 C++에서 배열의 사용 개념과 같이, index의 유효성을 점검하지 않는다. 이에 대한 감은은 참조 세기의 주제에 떨어져 있고, 추가하는 것도 그리 어려운일이 아니라 일단은 제외한다.)
         char& String::operator[](int index) // non-const operator[]
          return value->data[index];
         char& String::operator[](int index)
          return value->data[index];
          const char& operator[](int index) const; // const operator[]
          char& operator[](int index); // non-const operator[]
         const char& String::operator[](int index) const
         { return value->data[index]; }
         char& String::operator[](int index)
          return value->data[index];
         하지만 이러한 배열 객체의 사용은 완벽하지 않다. C와 C++상에서 기본 문법을 적용시킨다면, 괄호를 사용해서 객체의 index를 사용할수 있어야 한다.
          T& operator[][](int index1, int index2);
          const T& operator[][](int index1, int index2) const;
          T& operator()(int index1, int index2);
          const T& operator()(int index1, int index2) const;
  • Slurpys/문보창 . . . . 32 matches
         bool isSlurpy(const char * str, int & index);
         bool isSlimp(const char * str, int & index);
         bool isSlump(const char * str, int & index);
          int index;
          index = 0;
          if (isSlurpy(str, index))
         bool isSlurpy(const char * str, int & index)
          if (!isSlimp(str, index))
          if (!isSlump(str, index))
          if (index != strlen(str))
         bool isSlimp(const char * str, int & index)
          if (str[index++] != 'A')
          if (str[index] == 'H')
          index++;
          if (str[index] == 'B')
          index++;
          if (!isSlimp(str, index))
          if (str[index] == 'C')
          index++;
          if (!isSlump(str, index))
  • LoadBalancingProblem/임인택 . . . . 27 matches
          public boolean checkLeft(int index) {
          int partialLength = (index==0)? 1:index;
          if( index==0 ) {
          for(int i=0; i<index; i++) {
          if(leftSum < index-1 )
          else if( leftSum/index < rightSum/(_processor.length-index) ) {
          /*else if(leftSum/index == rightSum/(_processor.length-index)
          && _processor[index] > leftSum/index ) {
          public boolean checkRight(int index) {
          int partialLength = (index==0)? 1:index;
          if( index==_processor.length-1 ) {
          for(int i=0; i<=index; i++) {
          if(index==0)
          System.out.println("인덱스 : " + index );
          System.out.println("평균 : " + _processor[index] + "왼쪽나머지:" + (leftSum%average)
          if( rightSum< (_processor.length-index-1) )
          else if( leftSum/(index+1) > rightSum/(_processor.length-index-1) ){
          else if( leftSum/(index+1) == rightSum/(_processor.length-index-1 )
          && _processor[index] > rightSum/(_processor.length-index-1) ) {
  • WinampPluginProgramming/DSP . . . . 27 matches
          int index=0, x;
          int dindex;
          dindex=(numsamples<<14)/n;
          int p=(index>>14)<<1;
          index+=dindex;
          int p=(index>>14);
          index+=dindex;
          int index=0, x;
          int dindex;
          dindex=(numsamples<<14)/n;
          int p=(index>>14)<<1;
          index+=dindex;
          int p=(index>>14);
          index+=dindex;
          int index=0, x;
          int dindex;
          dindex=(numsamples<<14)/n;
          int p=(index>>14)<<1;
          index+=dindex;
          int p=(index>>14);
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 . . . . 26 matches
          //자기 Section 이 아닌 내용을 Calculate 하는 함수. Index 에 반응하며 수행시 초기화 후 계산한다.
          private void CalculateNotInSection(int index) {
          if(i != index) { notInSectionArticleSum += sectionTrain[i].getSectionArticleNumber(); }
          if(i != index) { notInSectionWordTotalSum += sectionTrain[i].getSectionWordsNumber(); }
          //해당 단어에 대한 자기 Section 이 아닌 단어수를 Calculate 하는 함수. Index 에 대응하며 수행시 초기화 후 계산한다.
          private void CalculateNotInSectionWord(int index, String word) {
          if(i != index) { notInSectionWordSum += sectionTrain[i].getSectionWordNumber(word); }
          //해당 기사에 대한 연산 결과를 반환하는 함수. 양수일 경우 해당 Index Section 에 일치하는 기사로 판단한 것이며, 음수일 경우 해당 Index Section 에 일치하지 않는 기사라고 판단한 것이다.
          private double getWeight(int index, String Article) {
          double reslt = getLnPsPns(index);
          reslt += getLnPwsPwns(index, wordTmp);
          // Ln[p(S) / p(!S)] 값을 계산하는 함수. Index 에 대응한다.
          private double getLnPsPns(int index) {
          return Math.log((double)sectionTrain[index].getSectionArticleNumber() / notInSectionArticleSum);
          // Sigma Ln[p(Wi ^ S) / p(Wi ^ !S)] 값을 계산하는 함수. Index 에 대응한다. 단 특정 단어에 대한 Advantage 를 부과한다. (Advantage 함수 참조)
          private double getLnPwsPwns(int index, String word) {
          CalculateNotInSectionWord(index, word);
          return Math.log(((double)sectionTrain[index].getSectionWordNumber(word) / sectionTrain[index].getSectionWordsNumber()) / ((double)ArticleAdvantage(index, word) / notInSectionWordTotalSum));
          // 특정 단어에 대한 Advantage 부과함수. 해당 Index Section 에만 존재하는 단어일때 빈도에 따른 가산점을 부여한다. 가산은 해당단어수 / Section 전체기사수 * 50 이다.
          private double ArticleAdvantage(int index, String word) {
  • Slurpys/이상규 . . . . 25 matches
         bool checkSlump(char str[], int index, int *end)
          if(str[index] == 'D' || str[index] == 'E')
          index++;
          if(str[index] == 'F')
          while(str[index] == 'F')
          index++;
          if(str[index] == 'G')
          *end = index + 1;
          else if(checkSlump(str, index, end))
         bool checkSlimp(char str[], int index, int *end)
          if(str[index] == 'A')
          index++;
          if(str[index] == 'H')
          *end = index + 1;
          else if(str[index] == 'B')
          index++;
          if(checkSlimp(str, index, end))
          index = *end;
          if(str[index] == 'C')
          *end = index + 1;
  • 데블스캠프2013/셋째날/머신러닝 . . . . 23 matches
          * 데이터 및 강의자료 [http://zeropage.org/index.php?mid=seminar&document_srl=91554 링크]
         similiarIndex = 0;
          similiarIndex = j;
          print 'similiar index : ', similiarIndex;
          testClass.append(trainClass[similiarIndex]);
          int similiarIndex = 0;
          cout << "index : " << idx++ << endl;
          similiarIndex = j;
          cout << "similiar index : " << similiarIndex << endl;
          testClass.insert(testClass.end(), trainClassList[similiarIndex]);
          int min_index = -1;
          min_index = j;
          if(train_class.data[min_index][j]){
          int min_index = 0;
          min_index = j;
          test[1][i][0] = min_index;
         int getClosestIndex(int sum, double compare[]);
          int idx = getClosestIndex(new_sum[i], avr);
         int getClosestIndex(int sum, double compare[]) {
          int cnt=0,ccnt,loading=0,old_cnt=0,oldindex=0;
  • OurMajorLangIsCAndCPlusPlus/print/이도현 . . . . 21 matches
          int arg_index = 0;
          while (arg[arg_index] != '\0')
          if (arg[arg_index] == '%')
          arg_index++;
          if(isdigit((int)arg[arg_index]))
          align = arg[arg_index] - '0';
          arg_index++;
          if (arg[arg_index] == 'd') // 정수형 출력
          else if (arg[arg_index] == 's') // string(char *)형 출력
          else if (arg[arg_index] == 'f') // float형 출력
          int decimal, sign, zero_position, index = 0;
          arg_index++;
          else if (arg[arg_index] == '@')
          arg_index++;
          if (arg[arg_index] == 'd') // 정수형 배열 출력
          else if (arg[arg_index] == 's') // string(char *)형 배열 출력
          else if (arg[arg_index] == 'f') // float형 배열 출력
          int decimal, sign, zero_position, index = 0;
          arg_index++;
          putchar(arg[arg_index]);
  • 신기호/중대생rpg(ver1.0) . . . . 21 matches
         inventory itemFind(int index);
         void discardItem(int index);
         void buyItem(inventory item,int index);
         void buyItem(inventory item,int index){
          if(Main.money<cost[index]){
          Main.money-=cost[index];
          printf("당신은 %s을 구입했습니다.\n",storage[index].name);
          itemPush(storage[index]);
         inventory itemFind(int index){
          return inven[index];
         void discardItem(int index){
          tmpItem=inven[index];
          for(int i=index+1;i<=i_top;i++)
          void discard(int index);
          item find(int index);
         void inventory::discard(int index){
          for(int i=index;i<i_top;i++)
         item inventory::find(int index){
          return inven[index];
         void buyItem(item _item,int index);
  • 이승한/질문 . . . . 21 matches
          for(int index = 0; index < aLength; index++)
          copyArray[index] = aArray[index];//값 복사
          for(index = 0; index < aLength; index++)
          cout << copyArray[index] << " ";
          for(index = 0; index < aLength; index++)//copyArray의 모든 값을 0으로 초기화
          copyArray[index] = 0;
          for(index = 0; index < aLength; index++)
          cout << copyArray[index] << " ";
          for(int index = 0; index < arrayLength; index++)
          cout << scores[index] << " ";
  • 5인용C++스터디/템플릿 . . . . 20 matches
          void SetItem(int index, int item);
          int GetItem(int index);
         void Array5::SetItem(int index, int item)
          if(index >= 0 && index <= 4)
          Items[index] = item;
         int Array5::GetItem(int index)
          if(index >= 0 && index <= 4)
          return Items[index];
          void SetItem(int index, T item);
          T GetItem(int index);
         void Array5<T>::SetItem(int index, T item)
          if(index >= 0 && index <= 4)
          Items[index] = item;
         T Array5<T>::GetItem(int index)
          if(index >= 0 && index <= 4)
          return Items[index];
  • 데블스캠프2009/목요일/연습문제/다빈치코드/박준호 . . . . 16 matches
         int index = 0;
         void DrawCard(hand hand[], int index);
          for(index = 0; index <= cardnum; index++)
          DrawCard(handsort,index);
          for(index = 0; index <= cardnum; index ++)
          printf("%c%d ",handsort[index].color1, handsort[index].number);
         void DrawCard(hand handsort[], int index)
          handsort[index].number = w_block[num];
          handsort[index].color1 = 'w';
          handsort[index].number = b_block[num];
          handsort[index].color1 = 'b';
  • Celfin's ACM training . . . . 15 matches
         || 5 || 6 || 110603/10198 || Counting || . || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4010&title=Counting/하기웅&login=processing&id=&redirect=yes Counting/Celfin] ||
         || 6 || 6 || 110606/10254 || The Priest Mathmatician || . || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4132&title=ThePriestMathematician/하기웅&login=processing&id=&redirect=yes The Priest Mathmatician/Celfin] ||
         || 7 || 6 || 110608/846 || Steps || . || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4130&title=Steps/하기웅&login=processing&id=&redirect=yes Steps/Celfin] ||
         || 8 || 9 || 110908/10276 || Hanoi Tower Troubles Again || . || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4078&title=HanoiTowerTroublesAgain!/하기웅&login=processing&id=&redirect=yes Hanoi Tower Troubles Again/Celfin] ||
         || 9 || 6 || 110602/10213 || How Many Pieces Of Land? || 3 hours || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4143&title=HowManyPiecesOfLand?/하기웅&login=processing&id=celfin&redirect=yes How Many Pieces Of Land?/Celfin] ||
         || 10 || 6 || 110601/10183 || How Many Fibs? || 2 hours || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4172&title=HowManyFibs?/하기웅&login=processing&id=celfin&redirect=yes How Many Fibs?/Celfin] ||
         || 11 || 10 || 111007/10249 || The Grand Dinner || 1 hour || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4188&title=TheGrandDinner/하기웅&login=processing&id=celfin&redirect=yes The Grand Dinner/Celfin] ||
         || 12 || 12 || 111201/10161 || Ant on a Chessboard || 40 mins || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4209&title=AntOnAChessboard/하기웅&login=processing&id=&redirect=yes Ant on a Chessboard/Celfin] ||
         || 13 || 12 || 111204/10182 || Bee Maja || 30 mins || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4235&title=BeeMaja/하기웅&login=processing&id=&redirect=yes Bee Maja/Celfin] ||
         || 14 || 12 || 111207/10233 || Dermuba Triangle || 3 hours || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4238&title=DermubaTriangle/하기웅&login=processing&id=&redirect=yes Dermuba Triangle/Celfin] ||
         || 15 || 11 || 111105/10003 || Cutting Sticks || 3 days || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4198&title=CuttingSticks/하기웅&login=processing&id=&redirect=yes CuttingSticks/Celfin] ||
         || 16 || 13 || 111303/10195 || The Knights of the Round Table || 1 hour || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4263&title=TheKnightsOfTheRoundTable/하기웅&login=processing&id=&redirect=yes TheKnightsOfTheRoundTable/Celfin] ||
         || 17 || 13 || 111306/10215 || The Largest/Smallest Box || 40 mins || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4264&title=TheLagestSmallestBox/하기웅&login=processing&id=&redirect=yes TheLargestSmallestBox/Celfin] ||
         || 18 || 13 || 111307/10209 || Is This Integration? || 2 hours || [http://165.194.17.5/wiki/index.php?url=zeropage&no=4265&title=IsThisIntegration?/하기웅&login=processing&id=&redirect=yes IsThisIntegration/Celfin] ||
         || 22 || 13 || 111305/10167 || Birthday Cake || 1hour 30 mins || [http://zeropage.org/zero/index.php?title=BirthdatCake%2FCelfin&url=zeropage BirthdayCake/Celfin] ||
  • 압축알고리즘/슬이,진영 . . . . 15 matches
          int index = 0;
          while(input[index]!=NULL)
          if(input[index]==first){
          cout << (int)(input[index] - first);
          index++;
          index = 1;
          while(input2[index] != NULL)
          char c = input2[index];
          index++;
          int index =0;
          while(input[index]!=NULL)
          if(input[index]==input[index+1])
          cout<<count<<input[index];
          index++;
  • IsBiggerSmarter?/문보창 . . . . 12 matches
          int index;
          e[count].index = count + 1;
         // cout << e[t].index << " " << e[t].weight << " " << e[t].IQ << endl;
          v_temp.push_back(e[k].index);
          v_temp.push_back(e[i].index);
          short index;
          elephant_weight[count].index = count;
          if (elephant_weight[i].index == elephant_IQ[j].index)
          if (elephant_weight[i].index == elephant_IQ[j].index)
          result.push_back(elephant_weight[i].index);
  • MoreEffectiveC++/Efficiency . . . . 12 matches
         T& DynArray<T>::operator[](int index)
          if (index < 0) {
          if (index > 현재 인덱스의 최대값){
          new를 호출해서 충분한 메모리를 확보한다. 그렇게 해서 index를 활성화 시킨다.;
         over-eager evaluation(선연산,미리연산) 전술은 이 것에대한 답을 제시한다.:만약 우리가 index i로서 현재의 배열상의 크기를 늘리려면, locality of reference 개념은 우리가 아마 곧 index i보다 더 큰 공간의 필요로 한다는걸 이야기 한다. 이런 두번째 (예상되는)확장에 대한 메모리 할당의 비용을 피하기 위해서는 우리는 DynArray의 i의 크기가 요구되는 것에 비해서 조금 더 많은 양을 잡아서 배열의 증가에 예상한다. 그리고 곧 있을 확장에 제공할 영역을 준비해 놓는 것이다. 예를 들어 우리는 DynArray::operator[]를 이렇게 쓸수 있다.
          T& DynArray<T>::operator[](int index)
          if (index < 0) 예외를 던진다.;
          if (index > 현재 인덱스의 최대값){
          int diff = index - 현재 인덱스의 최대값;
          알맞은 메모리를 할당한다. 그래서 index+diff가 유효하게 한다.
         a[22] = 3.5; // 현재 index 44정도의 저장 공간을
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/변형진 . . . . 12 matches
          new Trainer("package/train/economy/index.economy.db").load(),
          new Trainer("package/train/politics/index.politics.db").load() });
          public double getWeight(int index, String doc) {
          double value = getLnPsPns(index);
          value += getLnPwsPwns(index, word);
          private double getLnPsPns(int index) {
          if (i != index) {
          return Math.log((double)trainers[index].getDocsCount()/sum);
          private double getLnPwsPwns(int index, String word) {
          if (i != index) {
          return Math.log(((double)trainers[index].getWordCount(word)/trainers[index].getWordsCount()) / ((double)sum/total));
  • CivaProject . . . . 11 matches
          for (index = 0; index < length; index++) {
          values[index] = newValuse[index];
          ElementType operator[] (int index) throw() {
          return values[index];
          const ElementType operator[] (int index) const throw() {
          return values[index];
          virtual char charAt(int index) = NULL;
          /** The offset is the first index of the storage that is used. */
  • JavaScript/2011년스터디/URLHunter . . . . 10 matches
         var CrtURL = (document.URL.indexOf('#') == -1)? document.URL+'#': document.URL.slice(0,document.URL.indexOf('#')+1);
         function Character(index){
          this.index = index;
          this.index = (this.index == 0) ? length - 1 : this.index - 1;
          this.index = (this.index + 1) % length;
  • LC-Display/문보창 . . . . 10 matches
         void showDisplay(char pd[][MAX_COL], int row, int index);
         void toDigital(char pd[][MAX_COL], int row, int col, int index, char c);
          int index;
          index = col * j + (j - 1);
          showDisplay(display, row, index);
         void showDisplay(char pd[][MAX_COL], int row, int index)
          for (j=0; j<index; j++)
         void toDigital(char pd[][MAX_COL], int row, int col, int index, char c)
          int start = index * col + index;
  • ProgrammingPearls/Column3 . . . . 10 matches
          int index = -1;
          ++index;
          if(scheme[index] != '$')
          cout << scheme[index];
          ++index;
          if(scheme[index] == '$')
          else if(scheme[index] >= '0' && scheme[index] <= '3')
          cout << data[scheme[index] - 48];
          if(scheme[index] == '\0')
  • 데블스캠프2011/둘째날/Machine-Learning/SVM/namsangboy . . . . 10 matches
          path1 = "/home/newmoni/workspace/svm/package/train/economy/index.economy.db"
          path2 = "/home/newmoni/workspace/svm/package/train/politics/index.politics.db"
          makedir = lambda i : "/home/newmoni/workspace/svm/package/train/"+i+"/index."+i+".db"
          path1 = "/home/newmoni/workspace/svm/package/train/economy/index.economy.db"
          path2 = "/home/newmoni/workspace/svm/package/train/politics/index.politics.db"
          makedir = lambda i : "/home/newmoni/workspace/svm/package/train/"+i+"/index."+i+".db"
          wordindexdic= {}
          wordindexdic[word]=(idx+1)
          if not wordindexdic.has_key(word):
          wordidx = wordindexdic[word]
  • Classes . . . . 9 matches
         [http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-045JSpring-2005/CourseHome/index.htm MIT open course ware] [[ISBN(0534950973)]]
         [http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-837Fall2003/CourseHome/index.htm MIT open course ware]
         [http://ocw.mit.edu/OcwWeb/Mathematics/18-06Spring-2005/CourseHome/index.htm Linear Algebra]
         [http://orchid.cse.cau.ac.kr/course/cn/index.php Home]
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project1 #1] is due to 27 Mar.
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project2 #2] is due to 10 Apr.
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project3 #3] is due to 15 May.
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project4 #4] is due to 29 May.
         [http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-828Fall2003/CourseHome/index.htm MIT open courseware] [[ISBN(1573980137)]]
  • EightQueenProblem/kulguy . . . . 9 matches
          public boolean locate(int index)
          if (index == queensNum)
          if(point.getY() == index + 1)
          if (locate(index + 1))
          index = 0;
          if (index < points.size())
          point = (Point)points.get(index);
          ++index;
          private int index;
  • JSP/FileUpload . . . . 9 matches
          if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
          String saveFile = file.substring(file.indexOf("filename="") + 10);
          saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
          saveFile = saveFile.substring(saveFile.lastIndexOf("\") + 1,saveFile.indexOf("""));
          int lastIndex = contentType.lastIndexOf("=");
          String boundary = contentType.substring(lastIndex + 1,contentType.length());
          pos = file.indexOf("filename="");
          pos = file.indexOf("\n", pos) + 1;
          pos = file.indexOf("\n", pos) + 1;
          pos = file.indexOf("\n", pos) + 1;
          int boundaryLocation = file.indexOf(boundary, pos) - 4;
  • OurMajorLangIsCAndCPlusPlus/print/허준수 . . . . 9 matches
          int index = va_arg(l, int);
          for(int x = 0; x<index; x++) {
          if(x != index -1) putchar(',');
          int index = va_arg(l, int);
          for(int y = 0; y<index; y++){
          if(y != index -1) putchar(',');
          int index = va_arg(l, int);
          for(int z=0; z< index; z++) {
          if(z != index -1) putchar(',');
  • RandomWalk/황재선 . . . . 9 matches
          int index = rand() % 8;
          if (ibug + imove[index] < 0 || ibug + imove[index] > row - 1 ||
          jbug + jmove[index] < 0 || jbug + jmove[index] > col - 1 )
          board[ibug + imove[index]][jbug + jmove[index]]++;
          ibug = ibug + imove[index];
          jbug = jbug + jmove[index];
  • WebGL . . . . 9 matches
          gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, buffer.index);
          gl.drawElements(gl.TRIANGLES, buffer.index.length, gl.UNSIGNED_SHORT, 0);
          //index is triangle point index of suface
          var indexBuffer = gl.createBuffer();
          gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indexBuffer);
          this.index = indexBuffer;
          this.index.length = model.indices.length;
  • 파스칼삼각형/구자겸 . . . . 9 matches
         def getrow(index):
          while (i<index):
          if i>index: break
         def getcol(index):
          for i in range(getrow(index)):
          return index - first + 1
         def getindex(row, col):
          a = arr[getindex(getrow(i)-1,getcol(i)-1)]
          b = arr[getindex(getrow(i)-1,getcol(i))]
  • 2002년도ACM문제샘플풀이/문제B . . . . 8 matches
         int getIndex(char c)
          int index;
          index=pattern.find_first_of(c);
          pattern = pattern.substr(0, index) + pattern.substr(index + 1);
          return index;
          int index;
          index = getIndex(inputData[i][j]);
          outputData[i] += addNumber * index;
  • AproximateBinaryTree/김상섭 . . . . 8 matches
          int left_sum = 0, right_sum= 0, min_index = 0;
          min_index = i;
          dp->name = dp->nodes[min_index].name;
          dp->value = dp->nodes[min_index].value;
          if(min_index != 0)
          for(int i = 0; i < min_index; i++)
          if(min_index != dp->nodes.size()-1)
          for(int i = min_index +1; i < dp->nodes.size(); i++)
  • Pairsumonious_Numbers/김태진 . . . . 8 matches
         int findThird(int Aindex,int i3)
          if(Aindex==n)return 1;
          if(abs(arr[i]-arr[j])==abs(a[Aindex-2]-a[Aindex-1])){
          x=abs(arr[i]-a[Aindex-2]);
          for(k=0;k<Aindex;k++){
          a[Aindex]=x;
          findThird(Aindex+1,1);
  • SpiralArray/임인택 . . . . 8 matches
          index = [0,0]
          SpirialArray[index[0]][index[1]] = value + 1
          index[0] += dir[0]
          index[1] += dir[1]
          SpirialArray[index[0]][index[1]] = value + 1
          print index
  • 데블스캠프2006/월요일/연습문제/웹서버작성/변형진 . . . . 8 matches
          * 디렉토리명으로 접근한 경우 index.html, index.htm, index.php 순서로 가져옴
         $index_file = array("index.html", "index.htm", "index.php");
          foreach($index_file as $idxf)
  • 압축알고리즘/홍선,수민 . . . . 8 matches
         bool test(int index)
          if ( index <max && 48<= (int)buffer[index] && (int)buffer[index] <= 57 ){
          end_Number= index;
          start_Number = index;
          end_Number= index;
          test(index+1);
  • ContestScoreBoard/허아영 . . . . 7 matches
          int temp_team_num, q_num, q_index[MAX_OF_TEAM_NUM]; // 문제 푼 index
          q_index[i] = 1;
          team_data[temp_team_num][q_index[temp_team_num]] = q_num; // 문제번호 넣기
          q_index[temp_team_num]++;
          team_data[temp_team_num][q_index[temp_team_num]] = q_num;
          cout << "team num of q : " << q_index[i] << endl;
  • JSP/SearchAgency . . . . 7 matches
          org.apache.lucene.index.IndexReader,
          org.apache.lucene.index.FilterIndexReader,
          org.apache.lucene.search.IndexSearcher,
          class OneNormsReader extends FilterIndexReader {
          public OneNormsReader(IndexReader in, String field) {
         // String index = "/home/httpd/index";
          String index = "index";
          IndexReader reader = IndexReader.open(index);
          Searcher searcher = new IndexSearcher(reader);
  • Stack/임다찬 . . . . 7 matches
         int index=0,top=9,bottom=0;
          return index==bottom;
          return index==top;
          array[index++]=data;
          pop_number=array[index];
          array[index--]=0;
          for(i=0;i<index;i++){
  • 데블스캠프2006/SSH . . . . 7 matches
          * 자신의 public_html 폴더안에 index.html 을 저장.
          * zeropage.org/~id url 로 들어가면 해당 index.html 화일이 보임
          * index.html, index.php, index.jsp 같이 index 는 기본 파일로 지정됨
          * wget 명령어. wget zeropage.org/index.html
  • 스네이크바이트/C++ . . . . 7 matches
          int index = 0;
          if(index == 0){
          array[index].data = input;
          array[index].link = NULL;
          array[index-1].link = &array[index];
          index++;
  • ACM_ICPC/2012년스터디 . . . . 6 matches
          * Doublets - [http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=31&page=show_problem&problem=1091]
          * Where's Waldorf - [http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=31&page=show_problem&problem=951]
          * Doublets - [http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=31&page=show_problem&problem=1091] //화요일까지 풀지 못하면 소스 분석이라도 해서..
          * A Multiplication Game - [http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=33&page=show_problem&problem=788]
          * Shoemaker's Problem - [http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=32&page=show_problem&problem=967]
          * Binary Indexed Tree
          * [IndexedTree/권영기]
          * Binary Indexed Tree
          - (Binary) Indexed Tree (이건 알아둬야 합니다. 실제로 Binary Indexed Tree는 Binomial에 가깝지만..)
          - Interval Tree (이것 또한 Indexed Tree가 이녀석의 역할을 대신할정도로 만능이지만.)
         다각형이 시작되는 edge를 만날때 ... indexed tree
  • C++3DGame . . . . 6 matches
          Point3D GetWorldCoord (int index)
          result.x = center.x + coord[index].x;
          result.y = center.y + coord[index].y;
          result.z = center.z + coord[index].z;
         CPU::GetWorldCoord(int index)는 그 세계의 원점에 대해 CPU 여덟개 점 중의 하나를 반환한다. 단지 coord[index]를 반환한다면, CPU중앙에 해당하는 CPU점을 반환하기 때문에 나중에 CPU를 그랠 때 원하는 대로 그릴 수 없게 된다. 중앙을 움직이면서도 CPU점 여덟개를 모두 옮기는 효과를 낼 수도 있다.
  • EightQueenProblem/da_answer . . . . 6 matches
          function getNextQueenPos(index, X, Y:integer):boolean;
         function TForm1.getNextQueenPos(index, X, Y:integer):boolean;
          nowIndex: integer;
          nowIndex := index+1;
          QueenPosArr[nowIndex].X := nowIndex;
          QueenPosArr[nowIndex].Y := i;
          if checkRule(QueenPosArr[nowIndex].X, QueenPosArr[nowIndex].Y) then
          if nowIndex = 7 then
          if getNextQueenPos(nowIndex, QueenPosArr[nowIndex].X, QueenPosArr[nowIndex].Y) then
          QueenPosArr[nowIndex].X := -1;
          QueenPosArr[nowIndex].Y := -1;
          QueenPosArr[nowIndex].X := -1;
          QueenPosArr[nowIndex].Y := -1;
          function getNextQueenPos(index, X, Y:integer):boolean;
         function TForm1.getNextQueenPos(index, X, Y:integer):boolean;
          nowIndex: integer;
          nowIndex := index+1;
          QueenPosArr[nowIndex].X := nowIndex;
          QueenPosArr[nowIndex].Y := i;
          if checkRule(QueenPosArr[nowIndex].X, QueenPosArr[nowIndex].Y) then
  • JUnit/Ecliipse . . . . 6 matches
          public int get(int index) {
          return array[index];
          public boolean set(int index, int value) {
          if(index < array.length && index >= 0) {
          array[index] = value;
  • JavaScript/2011년스터디 . . . . 6 matches
          * 데이터를 지운 후에 새로 추가하게되면 제일 아래쪽부터 차올라가는게 아니라 없어진 위치에 채우고 새로 채워나갑니다. 이 부분때문에 index의 필요성이 더 커졌습니다.
          * MySQL에 원하는 정보를 Delete하려고 하였으나, 그걸 위해서는 index가 필요했고, 인덱스를 만드는 방법을 연구하고 있습니다.
         alter table tablename add index 인덱스명(인덱스를 줄 컬럼1 , 인덱스를 줄 컬럼2, ... )
         alter table tablename drop index 인덱스명;
         CREATE [UNIQUE] INDEX index_name ON tbl_name (col_name[(length]),... )
         DROP INDEX index_name on tlb_name
  • JollyJumpers/서지혜 . . . . 6 matches
          int index = abs(a[i]-a[i-1]);
          if(isJ[index]) {
          isJ[index] = true;
          int index = abs(a[i]-a[i-1]);
          if(isJ[index]) {
          isJ[index] = true;
  • StacksOfFlapjacks/이동현 . . . . 6 matches
          int searchBigIndex(int end){ //0~end index까지 검사하여 가장 큰 수의 index리턴.
          int big_index=0;
          if(cake[big_index]<cake[i])
          big_index = i;
          return big_index;
          if(searchBigIndex(j)==j) //제일 큰 케익이 놓일자리에 이미 놓여있다면 다음뒤집기로.
          if(searchBigIndex(j)!=0) //맨위에 제일큰케익이 있으면 뒤집을 필요가 없다.
          flip(arr_size-searchBigIndex(j));
  • VendingMachine_참관자 . . . . 6 matches
          int index;
          index=0;
          Data[index]=token;
          index++;
          index=0;
          return Data[++index];
  • 김태진/Search . . . . 6 matches
          int index, val;
          for(index=1;index>0;){
          index=linear_search(arr,10,val);
          if (index<0) printf("Not found.\n");
          else printf("%d is found in %d-th position in the array.\n", val,index);
  • 비밀키/노수민 . . . . 6 matches
          int key,index=-1;
          while(fin.get(buffer[++index]))
          cout << char( int(buffer[index]) + key) << " ";
          int key,index=-1;
          while(fin.get(buffer[++index]))
          cout << char( int(buffer[index]) -n key) << " ";
  • Eclipse . . . . 5 matches
         ["Eclipse"] 프로젝트는 통합 개발 환경(IDE)을 위한 플렛폼을 목표하는 오픈소스 프로젝트 이다. [http://www.eclipse.org/projects/index.html 부분인용]
          * [http://www.eclipse.org/downloads/index.php 다운로드]
          * [http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-ui-home/accessibility/keys.html Eclipse 단축키 모음] [http://eclipse-tools.sourceforge.net/shortcuts.html Eclipse Keyboard Shortcuts]
          * http://eclipsians.net/index.php
         SeeAlso [http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/eclipse-project-home/plans/3_0/freeze_plan.html Eclipse 3.0 endgame plan]
  • EcologicalBinPacking/문보창 . . . . 5 matches
          int index;
          index = 0;
          index = i;
          cout << bin[index] << " " << nMove[index] << endl;
  • SmithNumbers/이도현 . . . . 5 matches
         int digit_separation(int start_index, int num, int *array)
          for (i = 0 + start_index; i < size + start_index; i++)
          array[i] = string[i - start_index] - '0';
          return size + start_index;
  • Where's_Waldorf/곽병학_미완.. . . . . 5 matches
          int index;
          /*index = 0;*/
          index = 0; //다음 단어의 첫 글자
          if(grid[row][col] == str[i].charAt(index)) { // 첫 단어가 맞으면
          /*System.out.println(str[i].charAt(index));
  • 2학기파이선스터디/문자열 . . . . 4 matches
          1. 인덱싱(Indexing) = [k]
         >>> s.index('like')
         >>> s.index('my')
          s.index('my')
         valueError : substring not found in string.index
  • ACM_ICPC/2013년스터디 . . . . 4 matches
          * Binary Indexed Tree
          * [http://211.228.163.31/30stair/bridging/bridging.php?pname=bridging&stair=15 bridging - binary indexed tree를 이용한 Up Sequence 문제]
          - 점화식을 구하는 것은 금방 구했으나, index를 얻어내는 것이 힘들었음.
          - 설명하면 1110110 이라는 것이 있을 때, 1110110이 오기 전에는 110으로 시작하는 모든 바코드가 있을 것이고, 그 이전에는 10으로 시작하는 모든 바코드가 있을 것이다. 그리고 1110110이라는 바코드가 오기 전에는 111000으로 시작하는 모든 바코드가 있을 것이고, 그 이전에는 11100으로 시작하는 모든 바코드가 있을 것이다. dp테이블에 해당 경우에 대한 경우의 수를 모두 저장해놨기 때문에, 앞에서 부터 차례대로 이전에 올 바코드의 수를 더해나가면 index를 구할 수 있다.
          * 2012 ICPC대전 문제 풀기 : [https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&category=554 링크]
  • Android/WallpaperChanger . . . . 4 matches
          int column_index = cursor
          .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
          return cursor.getString(column_index);
          || 4/25 || PathRepository를 ArrayList로 Parcelable객체로 만드는것을 성공 순서도상의 DB접근을 제한을 두어야할것 같음. 문제점 : WallpaperManagerActivity에서 Add시키고 setting하는데 객체가 날아감. 우짬.. 아! 우선 만들어놓고 setting할때만 DB에 저장시키는 방식으로 해야겠다.그리고 0으로 index가 없는것과 있는것을 표기해서 update혹은 새로 만들기를 실행하도록 하고. ||
         문자열을 처리할 때, String.indexOf(), String.lastIndexOf() 와 그 밖의 특별한 메소드를 사용하는 것을 주저하지 마십시오. 이 메소드들은 대체적으로, 자바 루프로 된 것 보다 대략 10-100배 빠른 C/C++ 코드로 구현이 되어있습니다.
  • EcologicalBinPacking/황재선 . . . . 4 matches
         int colorIndex[6][3] = {{0,5,7}, {0,4,8}, {1,3,8}, {1,5,6}, {2,3,7}, {2,4,6}};
          int index = 0;
          if (i == colorIndex[allColorSet][index] || i == colorIndex[allColorSet][index+1]
          || i == colorIndex[allColorSet][index+2])
  • LUA_6 . . . . 4 matches
         > mt.__index = function(x,key)
         __newindex : 새로운 index가 추가 되었을 경우에 호출 되는 meta 함수
         stdin:1: attempt to index local 'self' (a number value)
  • MoreEffectiveC++/Operator . . . . 4 matches
          T& operator[] (int index)
          int rangeCheck( int index)
          if ((index < lowerBound) || (index > upperBound)) ...
  • Refactoring/ComposingMethods . . . . 4 matches
          if ( (platform.toUpperCase().indexOf("MAC") > -1) &&
          (browser.toUpperCase().indexOf("IE") > -1) &&
          final boolean isMacOs = platform.toUpperCase().indexOf("MAX") > -1;
          final boolean isIEBrowser = browser.toUpperCase().indexOf("IE") > -1);
  • Slurpys/황재선 . . . . 4 matches
          index = 0
          index = aStr.find(ch,1)
          if aStr[index] == 'G':
          elif self.isSlump(aStr[index:]):
          slump = self.findSlumpStartIndex(aStr)
          def findSlumpStartIndex(self, aStr):
  • StandardWidgetToolkit . . . . 4 matches
         [http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/main.html SWT 프로젝트 페이지]
          --''[http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/main.html SWT 프로젝트 페이지]'' 에서
          * [http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html SWT 2.1 문서] - Code Snippets 가 많아서, 따라하기 용이하다.
          1. SWT를 다운로드 받는다. [http://www.eclipse.org/downloads/index.php Eclipse downlaod]에서 받을수 있다. Upload:swt-2.1-win32.zip
  • WikiSandPage . . . . 4 matches
         [[RSS("http://zerowiki.dnip.net/zero/index.php?mode=getRSS&url=namsang",6)]]
         http://www.nbc.com/Saturday_Night_Live/index.html
         [http://www.nbc.com/Saturday_Night_Live/index.html]
         [http://www.nbc.com/Saturday_Night_Live/index.html 쌩토요일밤]
  • 논문검색 . . . . 4 matches
          * [http://www.dlibrary.go.kr/index.html 국가전자도서관]
          * [http://www.nl.go.kr/index.php3 국립중앙도서관]
          * [http://www.nanet.go.kr/index.html 국회도서관]
          * [http://www.riss4u.net/index.html RISS4U]
  • 데블스캠프2005/금요일/OneCard . . . . 4 matches
          select = input('card index (-1:skip) : ')
          for index in range(0, len(pcCards)):
          if canHandOut(cardOnTable, pcCards[index]):
          cardOnTable = pcCards.pop(index)
  • 새싹교실/2012/주먹밥 . . . . 4 matches
          * 배열(array)는 같은 타입을 한꺼번에 관리하게 해줍니다 {{{ int a[10];}}}이라하면 a는 int형 10개가 생겨있고 0~9까지의 인덱스(index)를 지니죠.
          * APM 설치완료 => 블로그 보고. 사용법 익히기. APM_SETUP폴더에 htdocs폴더에 index.html 건들고 오기.
          * APM_SETUP폴더에 htdocs폴더에 index.html을 하기. http://www.w3schools.com/js/default.asp 가서 javascript예제 index.html에 작성하고 돌아가는것 확인.
  • 소수구하기/임인택 . . . . 4 matches
          int cur_arr_index = 1;
          //for(j=0; j<cur_arr_index; j++)
          if(flag) tmp_arr[cur_arr_index++]=i;
          /*for(i=0; i<cur_arr_index; i++)
  • 중위수구하기/나휘동 . . . . 4 matches
          maxIndex = aList.index(max(aList[0:k]))
          minIndex = aList.index(min(aList[k+1:n+1]))
          if aList[maxIndex] <= aList[k] <= aList[minIndex]:
          elif aList[maxIndex] <= aList[minIndex]:
          if aList[maxIndex] > aList[k]:
          swapList(aList, k, maxIndex)
          elif aList[minIndex] < aList[k]:
          swapList(aList, k, minIndex)
          else:# aList[maxIndex] > aList[minIndex]:
          swapList(aList, maxIndex, minIndex)
          maxIndex = aList.index(max(aList[0:k-i]))
          minIndex = aList.index(min(aList[k+1+i:n+1]))
          swapList(aList, k-1-i, maxIndex)
          swapList(aList, k+1+i, minIndex)
          if aList[maxIndex] <= aList[k] <= aList[minIndex]:
          elif aList[maxIndex] <= aList[minIndex]:
          if aList[maxIndex] > aList[k]:
          swapList(aList, k, maxIndex)
          elif aList[minIndex] < aList[k]:
          swapList(aList, k, minIndex)
  • 2010php/방명록만들기 . . . . 3 matches
         = 메인화면 ( index.php ) =
         header("location:index.php");
          echo"<a href='index.php?page=$i'>[$i]</a>";
  • 2학기파이선스터디/모듈 . . . . 3 matches
         ['_StringTypes', '__builtins__', '__doc__', '__file__', '__name__', '_float', '_idmap', '_idmapL', '_int', '_long', 'ascii_letters', 'ascii_lowercase', 'ascii_uppercase', 'atof', 'atof_error', 'atoi', 'atoi_error', 'atol', 'atol_error', 'capitalize', 'capwords', 'center', 'count', 'digits', 'expandtabs', 'find', 'hexdigits', 'index', 'index_error', 'join', 'joinfields', 'letters', 'ljust', 'lower', 'lowercase', 'lstrip', 'maketrans', 'octdigits', 'printable', 'punctuation', 'replace', 'rfind', 'rindex', 'rjust', 'rstrip', 'split', 'splitfields', 'strip', 'swapcase', 'translate', 'upper', 'uppercase', 'whitespace', 'zfill']
  • BabyStepsSafely . . . . 3 matches
          Iterator index = primes.iterator();
          for(int i = 0; index.hasNext(); i++)
          Integer value = (Integer)index.next();
  • Doublets/황재선 . . . . 3 matches
          start = wordList.indexOf(word1) + 1;
          end = wordList.indexOf(word2) + 1;
          if (to == wordList.indexOf(stack.get(stack.size() >= 2?
  • EcologicalBinPacking/임인택 . . . . 3 matches
         indexes = '123 132 213 231 312 321'.split()
          for str in indexes : # seq in indexes
  • HelpOnActions . . . . 3 matches
          * `titleindex`: 페이지 목록을 텍스트로 보내거나 (Self:?action=titleindex) XML로 (Self:?action=titleindex&mimetype=text/xml'''''') 보내기; MeatBall:MetaWiki 를 사용할 목적으로 쓰임.
  • JTDStudy/첫번째과제/정현 . . . . 3 matches
          int index= (int)(Math.random()*numbers.size());
          number+= numbers.elementAt(index);
          numbers.removeElementAt(index);
  • Kongulo . . . . 3 matches
          # never crawled them since we started, the item at index 2 in each
          # the web page added to the Google Desktop Search index.
          # 'index.', 'Icon', '%SystemRoot%\system32\SHELL32.dll,134'])
  • ListCtrl . . . . 3 matches
         == Mouse Click 후 index 받아 오기 ==
         int ListIndex;
         CPoint Index = point;
         m_ctrlZoneList.ScreenToClient(&Index);
         ListIndex = m_ctrlZoneList.HitTest(Index);
          int index = m_ctrlBlockList.GetNextSelectedItem(pos);
          m_ctrlBlockList.GetItemText(index, 0, buf, 64);
  • LongestNap/문보창 . . . . 3 matches
         void show(const Promise & nap, const int & index);
         void show(const Promise & nap, const int & index)
          cout << "Day #" << index << ": the longest nap starts at " << nap.start/60 << ":";
  • MatrixAndQuaternionsFaq . . . . 3 matches
          Individual elements of the matrix are referenced using two index
          of the matrix are indexed by the following row:column pairs:
          resolve array index operations.
  • MoniWikiACL . . . . 3 matches
         * @ALL allow read,ticket,info,diff,titleindex,bookmark,pagelist
         ProtectedPage @All deny read,ticket,info,diff,titleindex,bookmark,pagelist
         * @ALL allow show,ticket,titleindex,bookmark,pagelist
  • OperatingSystemClass/Exam2002_2 . . . . 3 matches
         6. Consider a file currently consisting of 100 blocks. Assume that the file control block(and the index block, in the case of indexed allocation) is already in memory, Calculate how many disk I/O operations are required for contiguous, linked and indexed (single-level) allocation strategies, if for one block, the following conditions hold. In the contiguous allocation case, assume that there is no room to grow in the beginning, but there is room to grow in the end. Assume that the block information to be added in stored in memory.
  • Plugin/Chrome/네이버사전 . . . . 3 matches
         크롬의 개발자 API주소는 지금 사이트 이전을 하고있는데 맨앞에 code가 developer로 이전하는것 같았다. 여튼 index의 주소는 다음과 같다.
         http://code.google.com/chrome/extensions/index.html
          * index.html
  • SimpleTextIndexerUsingSQLite . . . . 3 matches
         = index.db 가 저장되는곳 =
         C:\Documents and Settings\namsang\Local Settings\Temp\index
         Upload:indexer.zip
  • TestDrivenDatabaseDevelopment . . . . 3 matches
          Article get(int index) throws SQLException;
          void edit(int index, String writer, String title, String body) throws SQLException;
          void delete(int index);
  • UDK/2012년스터디 . . . . 3 matches
          * [http://download.autodesk.com/us/3dsmax/skillmoviesv2011/index.html Essential Skills Movies]
          * [http://docs.autodesk.com/3DSMAX/13/KOR/Autodesk%203ds%20Max%202011%20Tutorials/index.html Autodesk 3ds Max 자습서]
          * [http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=6837309&linkID=9241175 Autodesk 3ds Max Services & Support]
  • UglyNumbers/송지훈 . . . . 3 matches
          int arr[LIMIT] = {0}, num, index = 0, target;
          arr[index] = i; // 몫이 1이 아니면 그냥 잡수.
          index++;
  • UglyNumbers/이동현 . . . . 3 matches
          int index = 1;
          while (index != 1500) {
          index++;
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 3 matches
         여기서 아이템 초성 퀴즈의 기본은 아이템 이름 DB를 검색할수 있어야한다. 근데 WOW아이템은 현재 아이템 넘버만 7만을 넘는다. 중간중간 비어있는 index도 있다. 이게 뭥미. 아마 suffix때문일것으로 예상된다. suffix란 아이템에 부가적으로 붙은 옵션을 item index에수치화 한것을 부르는 말인데 그것에 따라 아이템의 index가 결정되는것 같더라. (아직 정확히는 모른다)
  • WeightsAndMeasures/황재선 . . . . 3 matches
          def findNextDataIndex(self):
          nextDataIndex = -1
          nextDataIndex = self.dataList.index(each)
          nextDataIndex = self.dataList.index(each)
          return nextDataIndex
          if self.stack.index(each) < end:
          next = self.findNextDataIndex()
          def testFindNextDataIndex(self):
          self.assertEquals(2, self.wam.findNextDataIndex())
          nextIndex = self.wam.findNextDataIndex()
          ], self.wam.putInStack(nextIndex))
  • 김동준/Project/Data_Structure_Overview/Chapter1 . . . . 3 matches
          //가정 : 모든 A include Array, i include index, x include item
          Item retrive(A, i) => if(i include index)
          Array Store(A,i,x) => if( i include index)
  • 니젤프림/BuilderPattern . . . . 3 matches
          public PlanComponent getChild(int index) {
          public PlanComponent getChild(int index) {
          return planComponents.get(index);
  • 데블스캠프/2013 . . . . 3 matches
          || 8 |||| ns-3 네트워크 시뮬레이터 소개 |||| [:데블스캠프2013/둘째날/API PHP + MySQL] |||| [http://zeropage.org/index.php?mid=seminar&document_srl=91554 Machine Learning] |||| |||| [MVC와 Observer 패턴을 이용한 UI 프로그래밍] |||| [아듀 데블스캠프 2013] || 3 ||
          || 9 |||| [개발업계 이야기] |||| [:데블스캠프2013/둘째날/API PHP + MySQL] |||| [http://zeropage.org/index.php?mid=seminar&document_srl=91554 Machine Learning] |||| |||| MVC와 Observer 패턴을 이용한 UI 프로그래밍 |||| [아듀 데블스캠프 2013] || 4 ||
         || 김태진(21기) || [http://zeropage.org/index.php?mid=seminar&document_srl=91554 Machine Learning] ||
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/namsangboy . . . . 3 matches
          path1 = "/home/newmoni/workspace/svm/package/train/economy/index.economy.db"
          path2 = "/home/newmoni/workspace/svm/package/train/politics/index.politics.db"
          makedir = lambda i : "/home/newmoni/workspace/svm/package/train/"+i+"/index."+i+".db"
  • 데블스캠프2013/둘째날/API . . . . 3 matches
         == index.php ==
          echo '<script>alert("내용이 없습니다."); location.href="index.php";</script>';
          echo '<script>alert("등록되었습니다."); location.href="index.php";</script>';
  • 동문서버위키 . . . . 3 matches
         http://dongmun.cse.cau.ac.kr/phpwiki/index.php?RecentChanges
          * 테스트 기간때의 개인페이지의 영향 - 동문서버팀에서 '좋은 선례' 를 만들어보기 위해 동문서버 프로젝트 자체가 돌아가는 모습 (ex - [http://dongmun.cse.cau.ac.kr/phpwiki/index.php?PPGroup_Board 동문서버게시판프로젝트]) 을 일부러 위키에 남겨보고, 몇몇 사람들이 공동번역페이지나 스터디 페이지 같은 것들을 열어봤었지만. 이미 그때 사람들의 주 관심사들은 자신들의 페이지들에 일기를 남기는 것이였었죠. 그 이후, 인식을 바꿀만한 사건들이 나오지 않은 것 같습니다.
          * 주제의식의 부족 - 이것은 앞의 이야기와 이어지는데요. 인식을 바꾸지 못했던 점과 이어지죠. 주제에 대해서 [http://dongmun.cse.cau.ac.kr/phpwiki/index.php?%B5%BF%B9%AE%C0%A7%C5%B0 동문위키] 페이지에서 언급을 했었으면서도 실제로 열려있는 페이지들이 그러하지 못했죠. 이는 시험서비스였다는 점도 작용하겠지만, 시험서비스가 기간이 너무 길었죠. (기약없는 시험서비스기간) --석천
  • 방울뱀스터디/GUI . . . . 3 matches
         index = textArea.index(INSERT)
         index에 '1.17'과 같은 값이 리턴됨.
  • 스택/이태양 . . . . 3 matches
         int index =0;
          stack[index++] =num;
          stack[--index] = '\0';
  • 정모/2013.5.6/CodeRace . . . . 3 matches
          int index=0;
          strcpy(paper[index],note);
          index++;
  • 피보나치/김재성,황재선 . . . . 3 matches
          int index = 0;
          scanf("%d", &index);
          printf("%d\n", fivo(index));
  • 02_Python . . . . 2 matches
          * 객체 간의 순서를 가지게 된다(index 번호를 가진다)
         L2 = [0,1,2,3] 네 개의 항목: index 는 0 ~ 3 임
  • 1002/Journal . . . . 2 matches
          * index card 내용 정리하기
          * To Do List 에 대해서 Layering 이 필요하다 - 전체지도 : 부분지도 랄까. XP 라면 UserStory : EngineeringTask 를 이야기할 수도 있겠지. EngineeringTask 수준의 경우 Index Card 가 더 편하긴 한데, 보관해야 할일이 생길때 문제다. (특히 2-3일로 나누어서 하는 작업의 경우) 이건 다이어리 중간중간에 껴놓는 방법으로 해결예정. (구멍 3개짜리 다이어리용 인덱스카드는 없을까. -_a 평소엔 보관하다 필요하면 뜯어서 쓰고; 포스트잇이 더 나을까.)
          * 낙서장 - 이녀석은 필요없을듯. 아이디어 궁리할때는 차라리 연습장이 더 편하니까. 차라리 Index Card 나 포스트잇으로 쓰고 중간에 붙이는게 더 유연한 방법이라 생각한다.
         결국 코드를 만들어가면서 '학습된' 코드 - 각 단어의 요소들 sort index 를 만들고 해쉬테이블을 이용하는 식으로 - 로 바로 팍 하고 진행했는데, 여전히 TDD 보폭이 크다는 생각이 드니 그리 기분이 좋지 않다. (단어들 요소 sort & hash 저장은 처음 개발할때부터 떠올랐던 아이디어여서..)
          * SWEBOK 에서는 MindMap 이 잘 적용되었었는데, OSC 에서는 오히려 ConceptMap 식 접근이 더 용이해보였다. 이것도 책의 스타일에 영향을 받을듯. (기존의 SWEBOK 식 타성에 젖은 Index-Hierarchy 스타일이 문제가 있긴 하다.)
  • 2010Python . . . . 2 matches
          * [박정근] - python의 특이한 배열? keyindex를 지정가능하고 순서대로 출력도 가능함. 그리고 python은 지정하는것이 특기인 듯
          * [http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00-introduction-to-computer-science-and-programming-fall-2008/index.htm MIT Open Courseware 6.00 Introduction to Computer Science and Programming]
  • APlusProject/QA . . . . 2 matches
         Upload:APP_UnitTestResult_0609.zip -- index랑 페이지수 몇개 틀렸길래 수정해서 올립니다 -- QA승인끝
         Upload:APP_UnificationTestResult_0609.zip -- 최종문서 index틀렸길래 수정해서 다시 올렸습니다 -QA승인끝!
  • Applet포함HTML/영동 . . . . 2 matches
         http://java.sun.com/getjava/index.html
          pluginspage="http://java.sun.com/products/plugin/index.html#download">
  • BeeMaja/허준수 . . . . 2 matches
          int index = (input-start)/count + 1;
          for(int i = 1; i<=index; i++)
  • C/Assembly/포인터와배열 . . . . 2 matches
         // 마지막 k변수는 index 주소를 사용해 메모리를 목사하고 있다.
         // 그렇다면 index로 메모리를 복사하는 것은 eax로 복사하는 것보다 느리다는 얘긴가?
  • ClassifyByAnagram/재동 . . . . 2 matches
          self.index = i
          self.anagramList[self.index].append(self.wordString)
  • ComputerNetworkClass/Report2006/BuildingProxyServer . . . . 2 matches
          * http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project4
         http://www.cs.wisc.edu/~cao/WISP98/html-versions/anja/proxim_wisp/index.html
  • HaskellExercises/Wikibook . . . . 2 matches
         (i) list index = (i) (tail list) (index-1)
  • Linux . . . . 2 matches
         [http://translate.google.com/translate?hl=ko&sl=en&u=http://www.softpanorama.org/People/Torvalds/index.shtml&prev=/search%3Fq%3Dhttp://www.softpanorama.org/People/Torvalds/index.shtml%26hl%3Dko%26lr%3D 리눅스의 개발자 LinusTorvalds의 소개, 인터뷰기사등]
  • MFC/CollectionClass . . . . 2 matches
          || {{{~cpp GetAt(index)}}} || 인덱스로 지정된 배열의 객체를 리턴한다. ||
          || {{{~cpp operator[index]}}} || GetAt()과 동일하게 작동하며, built-in 배열과 동일한 사용법을 제공한다. [[BR]] {{{~cpp pointArray.SetAt}}}(3, NewPoint)[[BR]]{{{~cpp pointArray[3]=NewPoint}}} ||
          || {{{~cpp FindIndex()}}} || 인자로 받은 int 형의 색인값을 기준으로 그곳의 POSITION 형태의 값을 리턴한다. 최초 요소는 인덱스 0을 갖는다. ||
          || {{{~cpp FindIndex()}}} || 인자로 받은 int 형의 색인값을 기준으로 그곳의 POSITION 형태의 값을 리턴한다. 최초 요소는 인덱스 0을 갖는다. ||
  • MobileJavaStudy/SnakeBite/FinalSource . . . . 2 matches
          private int headIndex;
          headIndex = 0;
          public SnakeCell getSnakeCell(int index) {
          return (SnakeCell)cellVector.elementAt((headIndex + index) % length());
          cellVector.insertElementAt(currentHead, headIndex);
          headIndex = (headIndex + length() - 1) % length();
  • MobileJavaStudy/SnakeBite/Spec2Source . . . . 2 matches
          private int snakeHeadIndex;
          snakeHeadIndex = 0;
          public SnakeCell getSnakeCell(int index) {
          return (SnakeCell)snakeCellVector.elementAt((snakeHeadIndex + index) % length());
          snakeHeadIndex = (snakeHeadIndex + length() - 1) % length();
  • MobileJavaStudy/SnakeBite/Spec3Source . . . . 2 matches
          private int headIndex;
          headIndex = 0;
          public SnakeCell getSnakeCell(int index) {
          return (SnakeCell)cellVector.elementAt((headIndex + index) % length());
          headIndex = (headIndex + length() - 1) % length();
  • MoinMoinBugs . . . . 2 matches
         With 0.3, TitleIndex is broken if first letter of Japanese WikiName is multibyte character. This patch works well for me but need to be fixed for other charsets.
          if letter not in index_letters:
          index_letters.append(letter)
  • ProjectPrometheus/Journey . . . . 2 matches
         일단 알고리즘부분을 대강 생각한뒤 Python 으로 TDD 를 했다. ([http://zeropage.org/browsecvs/index.php?&dir=ProjectPrometheus%2FPythonProject%2F&file=RSSpike.py&rev=1.1&cvsrep=ZeroPage 소스]). CRC 세션을 먼저하여 시나리오를 시각화해두고 프로그래밍을 했었다면 좀 더 빨리 작성할 수 있지 않았을까 하는 생각을 해본다.
          ''[http://javaservice.net/~java/bbs/read.cgi?m=devtip&b=ejb&c=r_p&n=1003899808&p=2&s=t#1003899808 EJB의 효용성에 관해서], [http://www-106.ibm.com/developerworks/library/ibm-ejb/index.html EJB로 가야하는지 말아야 하는지 망설여질때 도움을 주는 체크 리스트], 그리고 IR은 아마도 http://no-smok.net/nsmk/InformationRadiator 일듯 --이선우''
  • PythonForStatement . . . . 2 matches
         These represent finite ordered sets indexed by non-negative numbers. The built-in function len() returns the number of items of a sequence. When the length of a sequence is n, the index set contains the numbers 0, 1, ..., n-1. Item i of sequence a is selected by a[i].
  • STL/vector . . . . 2 matches
          Iterator 들이나, 배열의 영역설정은 그 모호성을 배제하기 위해서, 마지막 자료형 + 1의 index 를 가지는 것을 상식으로 취급합니다. MFC, Java 등 여타 라이브러리들의 index접근 하는법 마찬가지 입니다. 익숙해 지는 수 밖에 없지 않을까요? --NeoCoin
  • UglyNumbers/황재선 . . . . 2 matches
          def uglyNumber(self, index):
          return numberList[index-1]
  • VonNeumannAirport/Leonardong . . . . 2 matches
          self.matrix[o-1][d-1] = abs( origins.index(o)
          - destinations.index(d) ) + 1
  • VonNeumannAirport/남상협 . . . . 2 matches
          traffic+=(abs(configure[1].index(arrivalGate)-configure[0].index(departureGate))+1)*self.trafficList[departureGate-1][i+1]
  • WordIndex . . . . 2 matches
         This is an index of all words occuring in page titles.
          * TitleIndex -- a shorter index
         [[WordIndex]]
  • XpWeek/20041220 . . . . 2 matches
          * [http://javastudy.co.kr/api/api1.4/index.html JDK API(Korean)] [http://zeropage.org/pub/j2sdk-1.4.1-doc/docs/index.html JDK Full Document]
  • ZeroPageServer/set2002_815 . . . . 2 matches
          * [[HTML( <STRIKE> apache에서 index.html 을 못찾는 문제 </STRIKE> )]] kernel upgrade후 해결
          * [[HTML( <STRIKE> moin 1.1 에서 한글 index 먹도록 만들기 </STRIKE> )]] : 석천 수행
  • lostship/MinGW . . . . 2 matches
          * MinGW 인스톨 후 MSYS 를 인스톨 한다. [http://www.mingw.org/index.shtml MinGW & MSYS]
          * /STLport-4.5.3/doc/index.html 에서 컨피그 셋팅을 보고 필요하면 수정한다.
  • 강희경 . . . . 2 matches
          *[http://flash.hangame.com/index.nhn?navertc=1]
          *[http://www.kukkiwon.or.kr/tkskill/pomsae_index.asp?div=3]국기원
  • 고슴도치의 사진 마을 . . . . 2 matches
         || [http://165.194.17.5/wiki/index.php?url=zeropage&no=3818&title=알고리즘&login=processing&id=celfin&redirect=yes algorithms] ||
         || [http://165.194.17.5/wiki/index.php?url=zeropage&no=3817&title=경시대회준비반&login=processing&id=celfin&redirect=yes preparing the ACM] ||
  • 고슴도치의 사진 마을처음화면 . . . . 2 matches
         || [http://165.194.17.5/wiki/index.php?url=zeropage&no=3818&title=알고리즘&login=processing&id=celfin&redirect=yes algorithms] ||
         || [http://165.194.17.5/wiki/index.php?url=zeropage&no=3817&title=경시대회준비반&login=processing&id=celfin&redirect=yes preparing the ACM] ||
  • 권순의 . . . . 2 matches
          * [http://zeropage.org/index.php?mid=seminar&document_srl=95664 발표자료]
          * [http://zeropage.org/index.php?mid=project&category=61158 레고마인드스톰]
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현 . . . . 2 matches
          FileData politics = new FileData("train/politics/index.politics.db");
          FileData economy = new FileData("train/economy/index.economy.db");
  • 데블스캠프2011/둘째날/후기 . . . . 2 matches
          FILE* fpe = fopen("C:\\train\\economy\\index.economy.db", "r");
          FILE* fpp = fopen("C:\\train\\politics\\index.politics.db", "r");
  • 데블스캠프2011/셋째날/String만들기 . . . . 2 matches
         || indexOf || str2.indexOf("b") == 1 ||
         || lastIndexOf || str2.lastIndexOf("b") == 3 ||
  • 데블스캠프2012 . . . . 2 matches
          || 3 |||| 배웠는데도 모르는 C |||| [http://zeropage.org/index.php?mid=seminar&category=61948 APM Setup] |||| 소켓, 웹, OpenAPI |||| |||| [:데블스캠프2012/넷째날/묻지마Csharp 묻지마 C#] |||| C로배우는 C++의원리 || 10 ||
          || 7 |||| [http://zeropage.org/index.php?mid=seminar&category=61948 페챠쿠챠] |||| [http://zeropage.org/seminar/62023 Kinect] |||| [http://zeropage.org/62033 LLVM+Clang...] |||| |||| 새내기를 위한 파일입출력 |||| CSE Life || 2 ||
  • 새싹교실/2011/Noname . . . . 2 matches
          * index를 이용하여 자료들에게 접근한다.
          * 배열을 선언한 후에 배열의 각 원소에 값을 저장하러면 index를 이용한다.
  • 이승한/mysql . . . . 2 matches
          키의 종류 : index, unique, primary
          키 설정 : add index [인덱스명] (필드명, );
  • 튜터링/2013/Assembly . . . . 2 matches
          4.다음 방식(indirect, indexed)로 코드를 작성하고, 설명하시오.
          indirect operands indexed operands
  • 프로그래머가알아야할97가지/ActWithPrudence . . . . 2 matches
         --[http://programmer.97things.oreilly.com/wiki/index.php/Seb_Rose Seb Rose] 원저
         원문: http://programmer.97things.oreilly.com/wiki/index.php/Act_with_Prudence
  • 호너의법칙/남도연 . . . . 2 matches
          cout<<"|index| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | \n";
          outputFILE<<"|index| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | \n";
  • AcceleratedC++/Chapter11 . . . . 1 match
         //vector의 각요소를 살펴보기 위해, size 및 index 연산자를 사용
  • AnEasyProblem/강소현 . . . . 1 match
          * printJ 함수 내에서 while(num<bin.length-1)문의 1을 빼주지 않아 bin[num+1]가 index bound of exception이 났었습니다.
  • AngularJS . . . . 1 match
          <button ng-click="todos.splice($index,1)">x</button>
  • Ant . . . . 1 match
          * http://jakarta.apache.org/ant/index.html 에서 최신버전의 binary, source 를 얻을 수 있다. CVS 를 이용, source 를 얻을 수도 있다.
  • Apache . . . . 1 match
         [http://www.superuser.co.kr/apache/index.htm]
  • Applet포함HTML/상욱 . . . . 1 match
          pluginspage = "http://java.sun.com/products/plugin/index.html#download">
  • Applet포함HTML/진영 . . . . 1 match
          pluginspage = "http://java.sun.com/products/plugin/index.html#download">
  • AssemblyStudy . . . . 1 match
          * [http://kldp.org/HOWTO/html/Assembly-HOWTO/index.html Assembly-HOWTO]
  • AudioFormatSummary . . . . 1 match
         || mp3 || ? || [http://www.ipm.fraunhofer.de/fhg/ipm_en/profil/lab_equipment/index.jsp Fraunhofer] || 공짜 아님. 손실압축. ||
  • BasicJava2005/3주차 . . . . 1 match
          * [http://pllab.kw.ac.kr/j2seAPI/api/index.html] : 한글 5.0 API 문서
  • BigBang . . . . 1 match
          * template와 friend 사이에 여러 매핑이 존재한다. many to many, one to many, many to one, one to one : [http://publib.boulder.ibm.com/infocenter/comphelp/v7v91/index.jsp?topic=%2Fcom.ibm.vacpp7a.doc%2Flanguage%2Fref%2Fclrc16friends_and_templates.htm 참고]
          * arr.size()는 녕원히 0이 되지 않는다.. naver.. i가 5일 때 ArrayIndexOutOfBounds Exception이 발생한다
  • CC2호 . . . . 1 match
         [http://myhome.hanafos.com/~kukdas/index.html C가 있는 홈페이지]
  • CProgramming . . . . 1 match
         [http://myhome.hanafos.com/~kukdas/index.html C가 있는 홈페이지]
  • CSP . . . . 1 match
          p = s.index(":")
  • CSS . . . . 1 match
         [CssMarket], [http://165.194.17.5/zero/index.php?keyword=CSS&mode=result&directGo=1&url=zeropage&range=%C0%FC%C3%BC CSS 검색결과]
  • CVS . . . . 1 match
          * http://www.chonga.pe.kr/document/programming/cvs/index.php 해당 사이트에서 제작한 한글 Reference
  • Class/2006Fall . . . . 1 match
          * [http://dblab.cse.cau.ac.kr/FS/index.html Home]
  • CleanCode . . . . 1 match
          * [http://www.filewiki.net/xe/index.php?&vid=blog&mid=textyle&act=dispTextyle&search_target=title_content&search_keyword=gerrit&x=-1169&y=-20&document_srl=10376 gerrit install guide]
  • Code/RPGMaker . . . . 1 match
          int[] indices = { // index of each coordinate
  • CodeRace/20060105/도현승한 . . . . 1 match
          int index = 0;
          int vecIndex = 0;
          vecIndex = findWord(aVec2, str);
          if(vecIndex != -1)
          aVec2[vecIndex].count++;
  • ComputerNetworkClass/2006 . . . . 1 match
          * http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project1
  • ComputerNetworkClass/Report2006/BuildingWebServer . . . . 1 match
          * http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project2
  • CooperativeLinux . . . . 1 match
          * [http://nullnull.com/blog/index.php?pl=16&nc=1&ct1=4 인스톨과정]
  • Eclipse/PluginUrls . . . . 1 match
          * [http://www.myeclipseide.com/Downloads%2Bindex-req-viewsdownload-sid-10.html] 홈페이지
  • EclipsePlugin . . . . 1 match
          * http://download.eclipse.org/downloads/index.php (페이지 하단에 있다.)
  • EdsgerDijkstra . . . . 1 match
          * http://www.cs.utexas.edu/users/EWD/indexEWDnums.html - Dijkstra 의 컬럼들을 읽을 수 있는 곳.
  • EightQueenProblem/임인택 . . . . 1 match
          8bit == 1byte 라는 생각을 하고 비트연산만으로 할 수 있을것 같다는 생각을 하였다. 하지만 이 경우는 n-Queen 으로까지 확장하기까지 힘들고 간단한 index 로 값을 참조할수 있는 배열에 비해 비능률적인 방법이다. 단지 속도가 조금 빠를 것으로 믿었는데.. 빨라봤자 얼마나 빠르겠어.--;
  • Expat . . . . 1 match
         http://www.xml.com/pub/a/1999/09/expat/index.html
  • FastSearchMacro . . . . 1 match
         5000여개의 파일이 있을 때 FastSearch는 2초 걸렸다. php는 파일 처리속도가 늦다는 이유로 FullSearchMacro를 쓰면 약 15여초 걸린다. 그 대신에, wiki_indexer.pl은 하루에 한두번정도 돌려야 되며, 5분여 동안의 시간이 걸린다.
  • FileStructureClass . . . . 1 match
         교수: 강현철 교수님 [http://dblab.cse.cau.ac.kr/FS/index.html 수업홈페이지]
  • Gof/Facade . . . . 1 match
          virtual void GetSourcePosition (int& line, int& index);
  • Gof/Singleton . . . . 1 match
          int m_Index;
          m_Index = 0;
         // index에 해당하는 CNSingleton를 Container에서 찾아 반환
          if (m_Index == m_ContainerOfSingleton->GetCount())
          m_Index = 0;
          POSITION position = m_ContainerOfSingleton->FindIndex(m_Index);
          m_Index++;
  • Hacking/20041028두번째모임 . . . . 1 match
          http://www.hackerslab.org/korg/index.fhz?menu=fhz
  • JMSN . . . . 1 match
          * http://jmsn.sourceforge.net/msnmlib/docs/index.html - MSN Library Java API Document
  • JTDStudy . . . . 1 match
          * [http://java.sun.com/javase/downloads/index.jsp]
  • JUnit . . . . 1 match
          * http://www.yeonsh.com/index.php?display=JUnit - 연승훈씨의 홈페이지. Cook Book (주소변경)
  • JavaStudy2003 . . . . 1 match
         http://java.sun.com/docs/books/tutorial/java/index.html
  • JavaStudy2003/첫번째과제 . . . . 1 match
         http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html
  • JavaStudy2004/자바따라잡기 . . . . 1 match
         http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html
  • JavaStudyInVacation/진행상황 . . . . 1 match
          * http://www-106.ibm.com/developerworks/library/j-nativegui/index.html
  • Jython . . . . 1 match
          * [http://python.kwangwoon.ac.kr:8080/python/bbs/index_html_search?items=title&searchstr=Jython&bbsid=tips 파이썬정보광장 Jython 관련]
  • Karma . . . . 1 match
         [http://karma-runner.github.io/0.10/index.html]
  • LUA_5 . . . . 1 match
         >> self.__index = self
  • LightMoreLight/허아영 . . . . 1 match
         (index+1)s multiplication -> 2 * 2 = 4
  • LinuxSystemClass/Exam_2004_1 . . . . 1 match
         globpri 가 1이고 index 가 1인 상태.
  • LispLanguage . . . . 1 match
          * TutorialsPoint LISP: http://www.tutorialspoint.com/lisp/index.htm
  • MFC/Socket . . . . 1 match
          data.m_index = 0;
  • MIT박사가한국의공대생들에게쓴편지 . . . . 1 match
         http://www.allblog.net/GoPage/goPageFrame.aspx?http%3a%2f%2focomet.jaram.org%2ftt%2findex.php%3fpl%3d158 에서 퍼옴.
  • MoniWikiBlogOptions . . . . 1 match
         set category index. Plese see BlogCategories
  • MoreEffectiveC++ . . . . 1 match
          1. 2002.03.08 문서화 종료 ( 1~35장 한글화 or 요약, Appendix와 index는 제외)
  • NSIS . . . . 1 match
          몇몇 유틸리티 인스톨러에서 InnoSetup 쓰는거 종종 보였었는데, 이것도 공짜였군..~ 그나저나, http://isfd.kaju74.de/index.php?screenshots . 너무 뽀대나는거 아냐?;; --[1002]
  • PC실관리 . . . . 1 match
         그림을 포함한 청소 설명 - [http://www.airlove.co.kr/shop/index.php?inc=html/air]
  • PHP . . . . 1 match
          * [http://www.phpschool.com/v2/index.html PHP School]
  • PNGFileFormat/FileStructure . . . . 1 match
          || 3 || 1, 2, 4, 8 || Each pixel is a palette index; a PLTE chunk must appear. ||
  • PairProgramming . . . . 1 match
          * Junior : Expert 간 격차에 따른 효율성의 문제 - [http://www.caucse.net/phpwiki/index.php?PairProgramming PairProgramming]
  • Postech/QualityEntranceExam06 . . . . 1 match
          4.2 way assoiate 캐시에서 히트 되었나 안되었나, 뭐 그러고 구조 그리고 각 index, tag, byte offset 등 요소 알아 맞추기
  • ProjectPrometheus/CookBook . . . . 1 match
         Java 에서는 HttpURLConnection 을 이용한다. 관련 코드는 http://www.javafaq.nu/tips/servlets/index.shtml 를 참조.
  • ProjectPrometheus/LibraryCgiAnalysis . . . . 1 match
         (http://www.cyberclip.com/webdebug/index.html, http://sourceforge.net/projects/webdebug)
  • ProjectZephyrus/Client . . . . 1 match
         [http://zeropage.org/browsecvs/index.php?&dir=ProjectZephyrusClient%2F Zephyrus Client CVS] 참조.
  • ProjectZephyrus/PacketForm . . . . 1 match
         바뀐 내용은 [http://zeropage.org/browsecvs/index.php?&cvsrep=ZeroPage&dir=ProjectZephyrusServer%2Fdocument%2F&file=PacketForm.txt CVS-PacketForm] 에서 확인가능
  • ProjectZephyrus/Server . . . . 1 match
         http://165.194.17.15/~neocoin/ProjectZephyrus/Server/doc/index.html
  • PyIde/Scintilla . . . . 1 match
         http://wiki.wxpython.org/index.cgi/wxStyledTextCtrl
  • PythonLanguage . . . . 1 match
         ~~http://python.netian.com/index.html~~
  • PythonXmlRpc . . . . 1 match
          * http://kldp.org/HOWTO/html/XML-RPC-HOWTO/index.html
  • R'sSource . . . . 1 match
          #http://165.194.17.5/wiki/index.php?url=zeropage&no=2985&title=Linux/RegularExpression&login=processing&id=&redirect=yes
  • REFACTORING . . . . 1 match
         http://www.refactoring.com/catalog/index.html - Refactoring 에 대해 계속 정리되고 있다.
  • RoboCode . . . . 1 match
          * [http://robocode.alphaworks.ibm.com/docs/robocode/index.html RoboCode API(English)]
  • STL/참고사이트 . . . . 1 match
         C++ Standard Template Library, another great tutorial, by Mark Sebern http://www.msoe.edu/eecs/cese/resources/stl/index.htm
  • ScheduledWalk/석천 . . . . 1 match
          int moveVectorPairIndex = journey[currentPosition] - '0';
          moveVector.n1 = MOVE_VECTOR_PAIR_ROW[moveVectorPairIndex];
          moveVector.n2 = MOVE_VECTOR_PAIR_COL[moveVectorPairIndex];
          int moveVectorPairIndex = journey[currentJourneyPosition] - '0';
          moveVector.n1 = MOVE_VECTOR_PAIR_ROW[moveVectorPairIndex];
          moveVector.n2 = MOVE_VECTOR_PAIR_COL[moveVectorPairIndex];
          int moveVectorPairIndex = journey[currentJourneyPosition] - '0';
          moveVector.n1 = MOVE_VECTOR_PAIR_ROW[moveVectorPairIndex];
          moveVector.n2 = MOVE_VECTOR_PAIR_COL[moveVectorPairIndex];
         바로 index가 -1 이 되었을 경우이죠. 그러므로 Modular 연산으로 계산할 수 없다.
          int moveVectorPairIndex = journey[currentJourneyPosition] - '0';
          moveVector.n1 = MOVE_VECTOR_PAIR_ROW[moveVectorPairIndex];
          moveVector.n2 = MOVE_VECTOR_PAIR_COL[moveVectorPairIndex];
          int moveVectorPairIndex = journey[currentJourneyPosition] - '0';
          moveVector.n1 = MOVE_VECTOR_PAIR_ROW[moveVectorPairIndex];
          moveVector.n2 = MOVE_VECTOR_PAIR_COL[moveVectorPairIndex];
  • ServerBackup . . . . 1 match
         uploadFile('index.html')
  • Star . . . . 1 match
         [[https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=13&page=show_problem&problem=1100 원문보기]]
  • TAOCP/BasicConcepts . . . . 1 match
          I - 인덱스(the index specification). 값이 1~6으로 rI1~rI6에 있는 내용과 메모리 주소를 더함
  • TheJavaMan . . . . 1 match
          * [http://java.sun.com/docs/books/tutorial/java/index.html The Java Tutorial]
  • Unicode . . . . 1 match
         js 등에서 indexOf() 로 가져오면 UCS-4 코드가 10진수로 반환됩니다.
  • VMWare/OSImplementationTest . . . . 1 match
          http://www.execpc.com/~geezer/johnfine/index.htm
  • Velocity . . . . 1 match
         download : http://jakarta.apache.org/site/binindex.cgi#velocity
  • ZPBoard/APM . . . . 1 match
          * http://www.mysql.com/doc/en/index.html - MySQL 메뉴얼
  • ZPHomePage . . . . 1 match
          * http://www.click4u.pe.kr/index_0.html - 홈페이지를 만드는데 필요한 다양한 내용들이 들어있습니다.^^
  • ZeroPageServer/AboutCracking . . . . 1 match
          * 2002-12-17 [http://zeropage.org/jsp/board/thin/index.jsp?table=open&service=view&page=0&id=6631 권고메일]
  • ZeroPageServer/set2005_88 . . . . 1 match
          * 신규 계정 skeleton 에 WEB-INF 기본 파일 추가. index.php 를 통해서 phptest 를 하도록 함.
  • ZeroPage_200_OK . . . . 1 match
          * 위에 링크한 저의 Workspace Project의 index.html 파일에 메뉴 샘플을 구현해두었습니다. 상단의 Preview로 확인하면서 적절히 참조해서 만들면 도움이 될겁니다.
  • ZeroPage회칙토론 . . . . 1 match
         각 항목에 몇조 몇항을 두는 이유는 index가 용이하라고 있는것이겠지만, 이 상황에 경우는 그리 필요없을것이라 생각함.--석천
  • html5/web-storage . . . . 1 match
          getter DOMString key(in unsigned long index);
  • html5/webSqlDatabase . . . . 1 match
         == Indexed Database ==
          * SeeAlso) [html5/indexedDatabase]
          * Indexed Database는 새로 등장한 또다른 로컬 저장소 스펙이다
          * 현재 Web SQL Database 는 사양 책정이 중지된 상태이며, IndexedDB 라는 새로운 스펙이
  • neocoin/SnakeBite . . . . 1 match
          * [http://zeropage.org/browsecvs/index.php?&dir=SnakeBite%2F Zp CVS 의 SnakeBite] : 집의 CVS 통째로 복사이다.
  • 강성현 . . . . 1 match
          * 컴퓨터공학부 내의 연구실에 대한 빠른 설명. [http://zeropage.org/index.php?mid=board&search_target=tag&search_keyword=%EB%8C%80%ED%95%99%EC%9B%90 자유 게시판에 있는 대학원 소개]에 기초함.
  • 게임프로그래밍 . . . . 1 match
          * [http://lazyfoo.net/SDL_tutorials/lesson01/windows/msvsnet0508e/index.php Setting_Up_SDL]
  • 공개선언/메세지 . . . . 1 match
         == [http://zeropage.org/zero/index.php?title=%B0%F8%B0%B3%BC%B1%BE%F0&url=zeropage#2.1 2007년 1월] ==
  • 대순이 . . . . 1 match
         안녕 . [http://165.194.87.227/zero/index.php?url=ZeroWiki&title=%B1%E8%C1%F8%C7%CF 클릭하지마요!]
  • 대학원준비 . . . . 1 match
         [http://www.icu.ac.kr/indexa.jsp 입학]
         [http://www.icu.ac.kr/AdmissionIndexList.jsp?tableName=n_anotice# 입학설명회]
  • 데블스캠프2005/Python . . . . 1 match
         임의의 객체를 저장하는 자료형. 순서가 있고 순서에 의해(index) 접근 가능. 객체의 변경이 가능한다.
  • 데블스캠프2009/금요일/SPECIALSeminar . . . . 1 match
          * 반복문이 제대로 됐는지 체크 - 첫, 끝 index 출력, 에러 메세지 확인
  • 데블스캠프2010/Prolog . . . . 1 match
          * [http://lakk.bildung.hessen.de/netzwerk/faecher/informatik/swiprolog/indexe.html Editor]
  • 데블스캠프2011/셋째날/String만들기/김준석 . . . . 1 match
          int indexOf(String& str){
          int lastIndexOf(String& str){
          //cout << s->lastIndexOf(*s2) << endl;
  • 땅콩이보육프로젝트2005 . . . . 1 match
          * [http://nlp.kookmin.ac.kr/HAM/kor/index.html 한국어 형태소 분석기]
  • 레밍즈프로젝트/프로토타입/STLLIST . . . . 1 match
         || FindIndex || Gets the position of an element specified by a zero-based index. ||
  • 박치하 . . . . 1 match
         치하 안녕~ [http://165.194.87.227/zero/index.php?url=ZeroWiki&title=%B1%E8%C1%F8%C7%CF 클릭하지마요!]
  • 방울뱀스터디 . . . . 1 match
          * http://python.netian.com/index.html - 초 간단 문법 익히기
  • 병역문제어떻게해결할것인가 . . . . 1 match
          * ~~[http://www.caucse.net/phpwiki/index.php?%C4%C4%B0%F8%C0%CE%B1%BA%B4%EB%B0%A1%B1%E2 컴공인군대가기(동문서버 위키)]~~
  • 블로그2007 . . . . 1 match
         미래에는 PDT로 수렴되겠지만 아직은 정식 버전에 잘 결합이 되지 않을 만큼 불안합니다. 따라서 PHPEclipse를 추천하는데 Web개발을 위해서는 이뿐만이 아니라, HTML Coloring 지원 도구등 여러 도구들이 필요합니다. 귀찮은 작업입니다. Calisto가 나오기 전부터 Eclipse 도구를 분야별로 사용하기 쉽게 패키징 프로젝트가 등장했는데 [http://www.easyeclipse.org/ Easy Eclipse]가 가장 대표적인 곳입니다. 아직도 잘 유지보수되고 있고, Calisto가 수렴하지 못하는 Script 개발 환경 같은 것도 잘 패키징 되어 있습니다. [http://www.easyeclipse.org/site/distributions/index.html Easy Eclipse Distribution]에서 PHP개발 환경을 다운 받아서 쓰세요. more를 눌러서 무엇들이 같이 패키징 되었나 보세요.
  • 비행기게임 . . . . 1 match
          게임 그래픽 부분이 만만치 않긴 하지.. 흐흐. 스프라이트 그리는 사람이 고충이 생각보다 많음. 안티 엘리어싱 부분의 경우 투명색이 제대로 처리가 되지 않기 때문에 도트노가다를 해주어야 하거든. 나의 경우 포토샵으로 일단 트루컬러로 그린뒤 그것을 256 indexed color 로 바꾸고 투명색 하나 넣어서 도트노가다 해주는 식이거나, 또는 아에 3D 툴로 그리던지. (3D 툴로 모델링하고 렌더링시에 웬만한 툴들은 alpha channel 을 따로 저장하거든. 그래서 3D 툴로 만든건 안티 엘리어싱 문제를 그리 의식하지 않음.) 또는 아에 엔진 자체가 3D이고 스프라이트들이 3D 이던지지만 이건 논의 대상 밖이겠군; 해성이의 경우는 원래 도트 노가다에 일가견이 있기에 뭐 전부 그려주긴 했고;
  • 빵페이지/도형그리기 . . . . 1 match
          * 포멧팅 이용, index 두개
  • 삼총사CppStudy/20030806 . . . . 1 match
          * Visual Assist[http://www.wholetomato.com/downloads/index.shtml]
  • 상협/프로젝트관련 . . . . 1 match
          ''방화벽을 자유 자재로 넘나들기 위해서는 80번 포트 위로 올라가는게 좋고, 그렇게 하려할때 가장 손쉽게 할 수 있는 기술은 SOAP을 이용하는 것이니, 이를 고려해봄이 어떨까 하는데. socket을 이용할 경우 80번 포트에서 웹서버가 돌아가면 '''말짱꽝'''으로 방화벽을 통과하기는 어려운일이고.. 그럼 SOAP은 어떻게 쓰느냐? 가장 손쉽게 접근할 수 있는것으로는 [http://java.sun.com/xml/jaxm/index.html JAXM]을 추천함. 그럼 어떻게 돌리는가? '''RTFM''' '' :) --이선우
  • 새싹교실/2011/學高/8회차 . . . . 1 match
          * index는 0부터 시작한다
  • 새싹교실/2012/AClass/4회차 . . . . 1 match
          - 원형으로 이루어져 있기 때문에 큐가 가득 찼을때나 완전히 비어있을때 Front와 Rear의 index는 동일하므로 Empty인지 Full인지 구분할 수 없다.
  • 새싹교실/2012/startLine . . . . 1 match
         Node *getData(LinkedList *linkedList, int position); // 해당하는 index를 가진 Node를 반환.
  • 새싹교실/2012/새싹교실강사교육/4주차 . . . . 1 match
         http://rogerdudler.github.com/git-guide/index.ko.html
  • 새싹교실/2013/케로로반 . . . . 1 match
          * 링크 : http://zeropage.org/index.php?mid=fresh&document_srl=88380
  • 성우용 . . . . 1 match
          //int index;
  • 세벌식 . . . . 1 match
          * 윈도우즈, 리눅스, MacOS 등에서 모두 세벌식을 쉽게 쓸 수 있다. [http://paero3.myzip.co.kr/use_sebeol_keyboard/index.html 이곳]에 각 OS에서 세벌식 배열을 사용할 수 있는 방법이 설명되어있다.
  • 안녕하세요 . . . . 1 match
         === 반가워~ 난 진하야 저 사진 디게 웃긴다 ㅋㅋㅋ [http://165.194.87.227/zero/index.php?url=ZeroWiki&title=%B1%E8%C1%F8%C7%CF 클릭하지마요!] ===
  • 역링크 . . . . 1 match
          * [http://www.caucse.net/phpwiki/index.php?역링크 역링크]
  • 영어학습방법론 . . . . 1 match
          * Practical English Usage (Author : Swan) 문법 index가 잘되어 있음. 글을 읽다가 모르는 문장, 문법일때 손쉽게 찾아서 볼 수 있음
  • 온라인서점 . . . . 1 match
         [http://www.bandibook.com/ 반디앤 루니스] [http://www.bandibook.com/c2c/index.php 중고책]
  • 우리홈만들기 . . . . 1 match
          * 1월 13일 : 지혜의 도움으로 public_html폴더를 만들고, chmod로 다른 사람이 읽을수 있도록 하고, index.html만듬..^^;
  • 위키QnA . . . . 1 match
         A : 아. 한번 고쳐봤습니다; 위의 네비게이션 바에 tab index를 주었습니다. 맨 처음 focus 는 바로가기 GO 입력창에 커서가 오고요. 그 다음 Shift + Tab 을 누르면 TAB 이 최근바뀐글 -> 검색 -> 제목색인 순으로 움직입니다. (반발이 3명 이상 나오면 원상복귀 하겠습니다;;) --석천
  • 위키로프로젝트하기 . . . . 1 match
         일반게시판에 경우 프로젝트가 어떻게 진행될까? 하나의 프로젝트당 하나의 게시판이 열려있어야 한다. 프로젝트가 10개라고 한다면 게시판이 10개가 열려있어야 하고, 각각의 글들은 시간순서대로 저장이 된다. 위키에서의 page 10개의 의미와 게시판 10개의 의미중 어떤 것이 더 cost가 적게 들까? 그리고, 시간순서의 글 index 나열방식과 텍스트 내의 하이퍼링크중심 글 나열방식중 어느것이 더 의미있는 정보를 담을까?
  • 위키메뉴얼 . . . . 1 match
         현재까지 완성된 메뉴얼의 모습: [http://rkd49.zeropage.org/index.php]
  • 이정화 . . . . 1 match
          정화야 안녕. 오티때 같은방 진하다 ㅋ 아침인데 졸라 졸려 -_-; [http://165.194.87.227/zero/index.php?url=ZeroWiki&title=%B1%E8%C1%F8%C7%CF 클릭하지마요!]
  • 이태양 . . . . 1 match
         오옷 카오스 초고수 -_-; 정말 두번째판 아키라는 ㄷㄷㄷ 이엿다 ㅋㅋㅋ [http://165.194.87.227/zero/index.php?url=ZeroWiki&title=%B1%E8%C1%F8%C7%CF 클릭하지마요!]
  • 임인택/Link . . . . 1 match
          * [http://www.keysound.com/index.htm KeySound]
  • 작은자바이야기 . . . . 1 match
          * 지난시간에 이은 Inner Class와 Nested Class의 각각 특징들 Encapsulation이라던가 확장성, 임시성, 클래스 파일 생성의 귀찮음을 제거한것이 새로웠습니다. 사실 쓸일이 없어 안쓰긴 하지만 Event핸들러라던가 넘길때 자주 사용하거든요. {{{ Inner Class에서의 this는 Inner Class를 뜻합니다. 그렇기 때문에 Inner Class를 포함하는 Class의 this(현재 객체를 뜻함)을 불러오려면 상위클래스.this를 붙이면 됩니다. }}} Iterator는 Util이지만 Iterable은 java.lang 패키지(특정 패키지를 추가하지 않고 자바의 기본적인 type처럼 쓸수있는 패키지 구성이 java.lang입니다)에 포함되어 있는데 interface를 통한 확장과 재구성으로 인덱스(index)를 통한 순차적인 자료 접근 과는 다른 Iterator를 Java에서 범용으로 쓰게 만들게 된것입니다. 예제로 DB에서 List를 한꺼번에 넘겨 받아 로딩하는것은 100만개의 아이템이 있다면 엄청난 과부하를 겪게되고 Loading또한 느립니다. 하지만 지금 같은 세대에는 실시간으로 보여주면서 Loading또한 같이 하게 되죠. Iterator는 통해서는 이런 실시간 Loading을 좀더 편하게 해줄 수 있게 해줍니다. 라이브러리 없이 구현하게 되면 상당히 빡셀 것 같은 개념을 iterator를 하나의 itrable이란 인터페이스로 Java에서는 기본 패키지로 Iterable을 통해 Custom하게 구현하는 것을 도와주니 얼마나 고마운가요 :) 여튼 자바는 대단합니다=ㅂ= Generic과 Sorting은 다른 분이 설명좀. - [김준석]
  • 정모/2011.5.2 . . . . 1 match
          * [http://zeropage.org/index.php?mid=notice&page=2&document_srl=52787 여기]에서 제로페이지의 행사들을 이끌어갈 스태프 여러분을 모집합니다.
  • 제로페이지회칙만들기 . . . . 1 match
         각 항목에 몇조 몇항을 두는 이유는 index가 용이하라고 있는것이겠지만, 이 상황에 경우는 그리 필요없을것이라 생각함.--석천
  • 지금그때2003/규칙 . . . . 1 match
          ==== 게임 규칙(앞면 - index card 구멍이 왼쪽) ====
  • 지금그때2006/선전문 . . . . 1 match
         <a href="http://165.194.17.5/zero/index.php?title=%C1%F6%B1%DD%B1%D7%B6%A72006%2F%C8%C4%B1%E2&url=zeropage"> 후기 쓰러 가기(클릭) </a>
  • 창섭 . . . . 1 match
         [http://my.dreamwiz.com/bicter/index.htm PC 상식과 팁]
  • 창섭/배치파일 . . . . 1 match
         [http://my.dreamwiz.com/bicter/index.htm 출처]
  • 코드레이스출동 . . . . 1 match
         [http://oss.or.kr/coderace/index.html 온라인 등록]
  • 허아영 . . . . 1 match
         위키Page -->> [http://165.194.87.227/zero/index.php?title=%C7%E3%BE%C6%BF%B5&url=ixforyouxl click]
  • 헝가리안표기법 . . . . 1 match
         || i || int || integer for index || int iCars ||
  • 호너의법칙 . . . . 1 match
         |index| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
  • 호너의법칙/김정현 . . . . 1 match
          System.out.print("n|index|");
  • 호너의법칙/김태훈zyint . . . . 1 match
          fprintf(file,"|index|");
  • 호너의법칙/박영창 . . . . 1 match
          // index 차수의 계수를 배열로 지정한다.
  • 호너의법칙/조현태 . . . . 1 match
          strcpy(write_temp[1]," |index|");
  • 황재선 . . . . 1 match
         jtable.getColumnModel().getColumn(index).setPreferredWidth(size);
Found 278 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.3273 sec